2015-06-22 18:37:16 +00:00
|
|
|
(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"]
|
|
|
|
|
|
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
|
|
|
:auto-clean false
|
2016-05-28 23:00:58 +00:00
|
|
|
:dependencies [[riddley "0.1.12"]]
|
2019-10-14 03:04:36 +00:00
|
|
|
:plugins [[lein-codox "0.10.7"]
|
2017-03-10 19:54:45 +00:00
|
|
|
[lein-doo "0.1.7"]]
|
2016-06-02 15:59:19 +00:00
|
|
|
:codox {:source-paths ["target/classes" "src/clj"]
|
|
|
|
|
:namespaces [com.rpl.specter
|
2016-06-07 18:40:31 +00:00
|
|
|
com.rpl.specter.zipper
|
2016-06-08 10:02:41 +00:00
|
|
|
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}"}}
|
|
|
|
|
|
|
|
|
|
|
2017-03-10 19:54:45 +00:00
|
|
|
:cljsbuild {:builds [{:id "test-build"
|
|
|
|
|
:source-paths ["src/clj" "target/classes" "test"]
|
|
|
|
|
:compiler {:output-to "out/testable.js"
|
|
|
|
|
:main 'com.rpl.specter.cljs-test-runner
|
2017-03-11 17:32:12 +00:00
|
|
|
:target :nodejs
|
|
|
|
|
:optimizations :none}}]}
|
2017-03-10 19:54:45 +00:00
|
|
|
|
2016-06-06 11:58:29 +00:00
|
|
|
:profiles {:dev {:dependencies
|
2017-03-10 17:32:02 +00:00
|
|
|
[[org.clojure/test.check "0.9.0"]
|
2017-12-22 04:28:00 +00:00
|
|
|
[org.clojure/clojure "1.9.0"]
|
2018-12-03 19:29:58 +00:00
|
|
|
[org.clojure/clojurescript "1.10.439"]]}
|
2018-12-13 11:54:28 +00:00
|
|
|
:bench {:dependencies [[org.clojure/clojure "1.9.0"]
|
|
|
|
|
[criterium "0.4.4"]]}
|
2016-08-11 14:13:27 +00:00
|
|
|
:test {:dependencies [[org.clojure/clojure "1.7.0"]]}}
|
|
|
|
|
|
2019-10-14 02:56:04 +00:00
|
|
|
:deploy-repositories
|
|
|
|
|
[["clojars" {:url "https://repo.clojars.org"
|
|
|
|
|
:sign-releases false}]]
|
|
|
|
|
|
2016-08-11 14:13:27 +00:00
|
|
|
:aliases {"deploy" ["do" "clean," "deploy" "clojars"]})
|