2015-06-22 18:37:16 +00:00
|
|
|
(def VERSION (.trim (slurp "VERSION")))
|
|
|
|
|
|
|
|
|
|
(defproject com.rpl/specter VERSION
|
2015-06-24 18:28:33 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.7.0-RC2"]
|
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-06-24 18:28:33 +00:00
|
|
|
:source-paths ["src"]
|
2015-02-26 15:55:20 +00:00
|
|
|
:test-paths ["test/clj"]
|
|
|
|
|
:profiles {:dev {:dependencies
|
|
|
|
|
[[org.clojure/test.check "0.5.9"]]}
|
|
|
|
|
})
|