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
|
(defproject cheshire "5.11.0"
:description "JSON and JSON SMILE encoding, fast."
:url "https://github.com/dakrone/cheshire"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"
:distribution :repo}
:global-vars {*warn-on-reflection* false}
:dependencies [[org.clojure/clojure "1.x"]
[com.fasterxml.jackson.core/jackson-core "2.x"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.x"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.x"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[tigris "debian" :exclusions [org.clojure/clojure]]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.x"]
[org.clojure/test.generative "debian"]
[org.clojure/tools.namespace "debian"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:benchmark {:test-paths ["benchmarks"]
:jvm-opts ^:replace ["-Xms1g" "-Xmx1g" "-server"]
:dependencies [[criterium "0.4.6"]
[org.clojure/data.json "0.2.6"]
[clj-json "0.5.3"]]}}
:aliases {"all" ["with-profile" "dev,1.7:dev,1.8:dev,1.9:dev,1.10:dev"]
"benchmark" ["with-profile" "dev,benchmark" "test"]
"pretty-bench" ["with-profile" "dev,benchmark" "test" ":only"
"cheshire.test.benchmark/t-bench-pretty"]
"core-bench" ["with-profile" "dev,benchmark" "test" ":only"
"cheshire.test.benchmark/t-bench-core"]}
:test-selectors {:default #(and (not (:benchmark %))
(not (:generative %)))
:generative :generative
:all (constantly true)}
:java-source-paths ["src/java"]
:jvm-opts ["-Xmx512M"
;; "-XX:+PrintCompilation"
;; "-XX:+UnlockDiagnosticVMOptions"
;; "-XX:+PrintInlining"
]
:javac-options ["-target" ~(System/getenv, "JAVA_TARGET_VERSION") "-source" ~(System/getenv, "JAVA_SOURCE_VERSION") "-Xlint:-options"]
:local-repo "debian/maven-repo")
|