-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeps.edn
23 lines (23 loc) · 1.63 KB
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{:paths ["src"]
:deps {org.clojure/core.async {:mvn/version "1.6.673"}
org.clojure/tools.namespace {:mvn/version "1.4.4"}}
:aliases {:dev {:extra-paths ["dev-src"]}
:storm {:classpath-overrides {org.clojure/clojure nil}
:extra-deps {com.github.jpmonettas/flow-storm-dbg {:mvn/version "3.6.5"}
com.github.jpmonettas/clojure {:mvn/version "1.11.1-5"}}
:jvm-opts ["-Dproject-name=hansel" "-Djdk.attach.allowAttachSelf" "-XX:+UnlockDiagnosticVMOptions" "-XX:+DebugNonSafepoints" ;; for the profilers
"-Dflowstorm.startRecording=true"
"-Dclojure.storm.instrumentEnable=true"
"-Dclojure.storm.instrumentOnlyPrefixes=hansel.,dev.,user"
"-Dflowstorm.theme=dark"]}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/core.match {:mvn/version "1.0.0"}
thheller/shadow-cljs {:mvn/version "2.20.7"}}}
:test-clj {:extra-deps {lambdaisland/kaocha {:mvn/version "1.71.1119"}}
:main-opts ["-m" "kaocha.runner"]}
:test-cljs {:extra-deps {com.lambdaisland/kaocha-cljs {:mvn/version "1.4.130"}}
:main-opts ["-m" "kaocha.runner"]}
:build {:extra-deps {io.github.clojure/tools.build {:git/tag "v0.9.6" :git/sha "8e78bcc"}
rewrite-clj/rewrite-clj {:mvn/version "1.0.767-alpha"}}
:ns-default build
:jvm-opts ["-Dcljfx.skip-javafx-initialization=true"] }}}