This repository has been archived by the owner on Jul 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
62 lines (58 loc) · 2.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
; The "major.minor" verison number is used for the Kafka Consumer Group.
; Every time the major.minor version is bumped, the Percolator will re-scan Evdience records from the start.
; Otherwise the normal behaviour of continuing to consume new records.
(defproject event-data-percolator "0.6.0"
:description "Event Data Percolator"
:url "http://eventdata.crossref.org/"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.cache "0.6.5"]
[org.clojure/core.async "0.4.474"]
[event-data-common "0.1.59"]
[enlive "1.1.6"]
[org.clojure/core.memoize "0.5.8"]
[commons-codec/commons-codec "1.10"]
[com.cemerick/url "0.1.1"]
[prismatic/schema "1.1.3"]
[clj-http "3.4.1"]
[org.clojure/data.json "0.2.6"]
[crossref-util "0.1.10"]
[http-kit "2.3.0-alpha5"]
[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"]
[com.github.crawler-commons/crawler-commons "0.7"]
[com.climate/claypoole "1.1.4"]
; Required for AWS, but not fetched.
[org.apache.httpcomponents/httpclient "4.5.3"]
[org.apache.commons/commons-io "1.3.2"]
[org.clojure/tools.logging "0.3.1"]
[org.apache.kafka/kafka-clients "0.11.0.0"]]
:jvm-opts ["-Duser.timezone=UTC" "-Xmx5g"]
:main ^:skip-aot event-data-percolator.core
:target-path "target/%s"
:plugins [[jonase/eastwood "0.2.3"]
[lein-cloverage "1.0.9"]]
: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"]}})