specter/project.clj

31 lines
1.3 KiB
Clojure
Raw Normal View History

(def VERSION (.trim (slurp "VERSION")))
(defproject com.rpl/specter VERSION
2016-08-11 14:13:27 +00:00
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
;"-agentpath:/Applications/YourKit_Java_Profiler_2015_build_15056.app/Contents/Resources/bin/mac/libyjpagent.jnilib"]
:source-paths ["src/clj"]
:java-source-paths ["src/java"]
:test-paths ["test", "target/test-classes"]
2015-10-10 16:32:32 +00:00
:auto-clean false
2016-05-28 23:00:58 +00:00
:dependencies [[riddley "0.1.12"]]
2016-06-02 15:59:19 +00:00
:plugins [[lein-codox "0.9.5"]]
:codox {:source-paths ["target/classes" "src/clj"]
:namespaces [com.rpl.specter
2016-06-07 18:40:31 +00:00
com.rpl.specter.zipper
com.rpl.specter.protocols
2016-06-09 13:24:05 +00:00
com.rpl.specter.transients]
2016-06-02 15:59:19 +00:00
:source-uri
2016-06-02 16:17:02 +00:00
{#"target/classes" "https://github.com/nathanmarz/specter/tree/{version}/src/clj/{classpath}x#L{line}"
2016-08-11 14:13:27 +00:00
#".*" "https://github.com/nathanmarz/specter/tree/{version}/src/clj/{classpath}#L{line}"}}
:profiles {:dev {:dependencies
[[org.clojure/test.check "0.7.0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]]}
2016-08-11 14:13:27 +00:00
:test {:dependencies [[org.clojure/clojure "1.7.0"]]}}
:aliases {"deploy" ["do" "clean," "deploy" "clojars"]})