-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
39 lines (27 loc) · 991 Bytes
/
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
(defproject seqspert "1.8.0-beta1.1.0-SNAPSHOT"
:description "Seqspert: specific, faster, smaller Clojure Sequence operations "
:url "https://github.com/JulesGosnell/seqspert/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0-beta1"]
[junit/junit "4.11"]]
:plugins [[lein-test-out "0.3.1"]
[lein-junit "1.1.7"]
;;[lein-nodisassemble "0.1.3"]
]
:warn-on-reflection true
:global-vars {*warn-on-reflection* true
*assert* false
;;*unchecked-math* true
}
:jvm-opts ["-Xms1g" "-Xmx1g" "-server"]
:javac-options ["-target" "1.7" "-source" "1.7"]
:main seqspert.all
:aot :all
:java-source-paths ["src/java" "test/java"]
:junit ["test/java"]
:junit-formatter "xml"
:junit-results-dir "target"
:source-paths ["src/clojure"]
:test-paths ["test/clojure"]
)