-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
54 lines (54 loc) · 2.56 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
(defproject matchmaker "0.1.0-SNAPSHOT"
:description "Services for matchmaking offers and demands on the web of data"
:url "http://github.com/opendatacz/matchmaker"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[com.taoensso/timbre "3.1.1"]
[log4j/log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jmdk/jmxtools
com.sun.jmx/jmxri]]
[environ "0.5.0"]
[org.clojure/tools.cli "0.3.1"]
[org.clojure/data.zip "0.1.1"]
[slingshot "0.10.3"]
[clj-http "1.0.0"]
[clj-time "0.7.0"]
[com.stuartsierra/component "0.2.2"]
[stencil "0.3.3"]
[cheshire "5.3.1"]
[incanter/incanter-core "1.5.5"]
[incanter/incanter-charts "1.5.5"]
[org.apache.jena/jena-core "2.11.2"]
[org.apache.jena/jena-arq "2.11.2"]
[com.github.jsonld-java/jsonld-java "0.5.0"]
[com.cemerick/url "0.1.1"]
[ring "1.2.2"]
[compojure "1.1.6"]
[ring/ring-json "0.2.0"]
[liberator "0.11.0"]
[im.chit/cronj "1.0.1"]
[prismatic/schema "0.2.4"]
[schema-contrib "0.1.3"]
[clojurewerkz/elastisch "2.0.0"]]
:main matchmaker.cli
:aliases {"harvest-json-ld" ["run" "-m" "matchmaker.data-synchronization.sparql-extractor"]
"index-json-ld" ["run" "-m" "matchmaker.data-synchronization.elasticsearch-loader"]}
:plugins [[lein-ring "0.8.13"]]
:profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]
[org.clojure/test.check "0.6.1"]]
:env {:dev true}
:resource-paths ["test/resources"]}
:uberjar {:aot :all}}
:ring {:handler matchmaker.system/app
:init matchmaker.system/init
:destroy matchmaker.system/destroy}
:test-paths ["test"]
:test-selectors {:current :current
:default (complement (or :integration :slow))
:integration :integration
:slow :slow
:all (constantly true)}
:jvm-opts ["-Xss1m" "-Xmx4g"])