forked from kumarshantanu/calfpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
28 lines (28 loc) · 1.67 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
(defproject calfpath "0.7.2"
:description "A la carte ring request matching"
:url "https://github.com/kumarshantanu/calfpath"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:global-vars {*warn-on-reflection* true
*assert* true
*unchecked-math* :warn-on-boxed}
:pedantic? :warn
:java-source-paths ["java-src"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.7.0"]]}
:c07 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:c08 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:c09 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:c10 {:dependencies [[org.clojure/clojure "1.10.0"]]}
:dln {:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}
:perf {:dependencies [[ataraxy "0.4.2" :exclusions [[org.clojure/clojure]
[ring/ring-core]]]
[bidi "2.1.5" :exclusions [ring/ring-core]]
[compojure "1.6.1" :exclusions [[org.clojure/clojure]
[ring/ring-core]
[ring/ring-codec]]]
[metosin/reitit-ring "0.3.1"]
[citius "0.2.4"]]
:test-paths ["perf"]
:jvm-opts ^:replace ["-server" "-Xms2048m" "-Xmx2048m"]}}
:aliases {"perf-test" ["with-profile" "c10,perf" "test"]})