This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
47 lines (47 loc) · 2.1 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject event-data-event-bus "0.2.9"
:description "Event Bus for Event Data"
:url "http://eventdata.crossref.org/"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[event-data-common "0.1.41"]
[org.clojure/data.json "0.2.6"]
[crossref-util "0.1.10"]
[http-kit "2.1.18"]
[http-kit.fake "0.2.1"]
[liberator "0.14.1"]
[ring "1.5.0"]
[ring/ring-jetty-adapter "1.5.0"]
[ring/ring-servlet "1.5.0"]
[ring/ring-mock "0.3.0"]
[org.eclipse.jetty/jetty-server "9.4.0.M0"]
[overtone/at-at "1.2.0"]
[robert/bruce "0.8.0"]
[yogthos/config "0.8"]
[compojure "1.5.1"]
[crossref/heartbeat "0.1.2"]
[com.auth0/java-jwt "2.2.1"]
[clj-time "0.12.2"]
[redis.clients/jedis "2.8.0"]
[metosin/scjsv "0.4.0"]
[com.amazonaws/aws-java-sdk "1.11.61"]
; Required for AWS, but not fetched.
[org.apache.httpcomponents/httpclient "4.5.2"]
[org.apache.commons/commons-io "1.3.2"]
[org.clojure/tools.logging "0.3.1"]
[org.apache.logging.log4j/log4j-core "2.6.2"]
[org.slf4j/slf4j-simple "1.7.21"]
[clojurewerkz/quartzite "2.0.0"]
[org.clojure/math.combinatorics "0.1.4"]
[org.apache.kafka/kafka-clients "0.10.2.0"]]
:jvm-opts ["-Duser.timezone=UTC" "-Xmx3G"]
:main ^:skip-aot event-data-event-bus.core
:target-path "target/%s"
:test-selectors {:default (constantly true)
:unit :unit
:component :component
:integration :integration
:all (constantly true)}
:profiles {:uberjar {:aot :all}
:prod {:resource-paths ["config/prod"]}
:dev {:resource-paths ["config/dev"]}})