specter/project.clj

11 lines
455 B
Clojure
Raw Normal View History

2015-04-19 17:46:00 +00:00
(defproject com.rpl/specter "0.1.0"
2015-02-26 15:55:20 +00:00
:dependencies [[org.clojure/clojure "1.6.0"]
]
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:plugins [[lein-nodisassemble "0.1.3"]]
2015-02-26 15:55:20 +00:00
:profiles {:dev {:dependencies
[[org.clojure/test.check "0.5.9"]]}
})