change clojure/cljs dependencies to provided
This commit is contained in:
parent
33e52d606a
commit
dd906aad95
1 changed files with 4 additions and 4 deletions
|
|
@ -1,16 +1,16 @@
|
||||||
(def VERSION (.trim (slurp "VERSION")))
|
(def VERSION (.trim (slurp "VERSION")))
|
||||||
|
|
||||||
(defproject com.rpl/specter VERSION
|
(defproject com.rpl/specter VERSION
|
||||||
:dependencies [[org.clojure/clojure "1.6.0"]
|
|
||||||
[org.clojure/clojurescript "0.0-3211"]
|
|
||||||
]
|
|
||||||
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
||||||
:source-paths ["src/clj"]
|
:source-paths ["src/clj"]
|
||||||
:java-source-paths ["src/java"]
|
:java-source-paths ["src/java"]
|
||||||
:test-paths ["test", "target/test-classes"]
|
:test-paths ["test", "target/test-classes"]
|
||||||
:jar-exclusions [#"\.cljx"]
|
:jar-exclusions [#"\.cljx"]
|
||||||
:auto-clean false
|
:auto-clean false
|
||||||
:profiles {:dev {:dependencies
|
:profiles {:provided {:dependencies
|
||||||
|
[[org.clojure/clojure "1.6.0"]
|
||||||
|
[org.clojure/clojurescript "0.0-3211"]]}
|
||||||
|
:dev {:dependencies
|
||||||
[[org.clojure/test.check "0.7.0"]]
|
[[org.clojure/test.check "0.7.0"]]
|
||||||
:plugins
|
:plugins
|
||||||
[[com.keminglabs/cljx "0.6.0"]]
|
[[com.keminglabs/cljx "0.6.0"]]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue