2015-06-22 18:37:16 +00:00
|
|
|
(def VERSION (.trim (slurp "VERSION")))
|
|
|
|
|
|
|
|
|
|
(defproject com.rpl/specter VERSION
|
2015-02-26 15:55:20 +00:00
|
|
|
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
2015-12-16 05:53:50 +00:00
|
|
|
:source-paths ["src/clj"]
|
|
|
|
|
:java-source-paths ["src/java"]
|
2015-10-09 16:33:24 +00:00
|
|
|
:test-paths ["test", "target/test-classes"]
|
2015-10-10 16:32:32 +00:00
|
|
|
:jar-exclusions [#"\.cljx"]
|
|
|
|
|
:auto-clean false
|
2016-05-28 23:00:58 +00:00
|
|
|
:dependencies [[riddley "0.1.12"]]
|
2016-02-26 14:17:40 +00:00
|
|
|
:profiles {:provided {:dependencies
|
2016-05-23 13:23:14 +00:00
|
|
|
[[org.clojure/clojure "1.6.0"]
|
|
|
|
|
[org.clojure/clojurescript "0.0-3211"]]}
|
2016-02-26 14:17:40 +00:00
|
|
|
:dev {:dependencies
|
2015-10-09 16:33:24 +00:00
|
|
|
[[org.clojure/test.check "0.7.0"]]
|
|
|
|
|
:plugins
|
|
|
|
|
[[com.keminglabs/cljx "0.6.0"]]
|
2015-12-16 05:53:50 +00:00
|
|
|
:cljx {:builds [{:source-paths ["src/clj"]
|
2015-10-09 16:33:24 +00:00
|
|
|
:output-path "target/classes"
|
|
|
|
|
:rules :clj}
|
2015-12-16 05:53:50 +00:00
|
|
|
{:source-paths ["src/clj"]
|
2015-10-09 16:33:24 +00:00
|
|
|
:output-path "target/classes"
|
|
|
|
|
:rules :cljs}
|
|
|
|
|
{:source-paths ["test"]
|
|
|
|
|
:output-path "target/test-classes"
|
|
|
|
|
:rules :clj}
|
|
|
|
|
{:source-paths ["test"]
|
|
|
|
|
:output-path "target/test-classes"
|
2015-10-09 19:08:08 +00:00
|
|
|
:rules :cljs}]}
|
2015-10-10 16:32:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
:aliases {"cleantest" ["do" "clean,"
|
|
|
|
|
"cljx" "once,"
|
|
|
|
|
"test"]
|
|
|
|
|
"deploy" ["do" "clean," "cljx" "once," "deploy" "clojars"]})
|