-
Notifications
You must be signed in to change notification settings - Fork 28
/
project.clj
36 lines (30 loc) · 1.28 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
(defproject com.guokr/simbase "0.1.0"
:description "A clojure document similarity server"
:url "https://github.com/guokr/simbase/"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.yaml/snakeyaml "1.12"]
[clj-pid "0.1.1"]
[net.sf.trove4j/trove4j "3.0.3"]
[org.slf4j/slf4j-api "1.7.5"]
[org.slf4j/slf4j-log4j12 "1.7.5"]
[log4j/log4j "1.2.17"]
[com.esotericsoftware.kryo/kryo "2.22"]
[junit "4.11" :scope "test"]]
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:resource-paths ["src/main/resources"]
:test-paths ["src/tests/java/"]
:test-selectors {:default (complement :integration)
:integration :integration
:all (constantly true)}
:compile-path "target/classes"
:target-path "target/"
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:jvm-opts ["-Xmx1g"]
:uberjar-name "simbase-standalone.jar"
:aot :all
:main simbase.main)