-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdeps.edn
31 lines (31 loc) · 1.56 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
24
25
26
27
28
29
30
31
{:paths ["src" "resources"]
:deps {com.github.pangloss/pure-conditioning {:mvn/version "1.0.35"}
com.github.pangloss/genera {:mvn/version "1.0.28"}
uncomplicate/fluokitten {:mvn/version "0.10.0"}
potemkin/potemkin {:mvn/version "0.4.7"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}
:dev {:extra-paths ["dev"]
:extra-deps {com.github.jpmonettas/flow-storm-debugger
{:git/url "https://github.com/jpmonettas/flow-storm-debugger"
:git/sha "7a6caa0ab5662ed230bf4c7195f3e0cea99141c7"}
com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.2.0"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
;; for async-profiler:
"-Djdk.attach.allowAttachSelf" "-XX:+UnlockDiagnosticVMOptions" "-XX:+DebugNonSafepoints"]}
:runner
{:extra-deps {cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:git/sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]}
:dev/dw {:extra-paths ["dev"]
:extra-deps {pangloss/genera {:local/root "../genera"}
pangloss/fermor {:local/root "../fermor"}}}
:build
;; build.clj tool.
{:deps {io.github.clojure/tools.build {:git/tag "v0.10.3" :git/sha "15ead66"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:ns-default build}}}