-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeps.edn
18 lines (16 loc) · 944 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:paths ["src" "target/classes"]
:deps/prep-lib {:alias :build
:fn compile-java
:ensure "target/classes"}
:deps {com.github.ben-manes.caffeine/caffeine {:mvn/version "3.1.8"}}
:aliases {:dev {:extra-paths ["test"]
:extra-deps {org.clojure/core.memoize {:mvn/version "1.1.266"}
com.clojure-goes-fast/clj-memory-meter {:mvn/version "0.2.1"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-Djdk.attach.allowAttachSelf"]}
:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.6.4" :git/sha "c21cfde"}}
:ns-default build}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}}}}}