-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeps.edn
More file actions
37 lines (31 loc) · 1.75 KB
/
deps.edn
File metadata and controls
37 lines (31 loc) · 1.75 KB
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
32
33
34
35
36
37
{:paths ["src" "resources" "target/classes"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
net.xyzsd.fluent/fluent-base {:mvn/version "0.72"}
net.xyzsd.fluent/fluent-functions-cldr {:mvn/version "0.72"}}
:aliases
{:dev {:extra-paths ["dev"]
:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
com.clojure-goes-fast/clj-java-decompiler {:mvn/version "0.3.7"}
com.clojure-goes-fast/clj-memory-meter {:mvn/version "0.4.0"}
virgil/virgil {:mvn/version "0.3.2"}
zprint/zprint {:mvn/version "1.2.4"}
opticlj/opticlj {:mvn/version "1.0.0-alpha10"}
nubank/matcher-combinators {:mvn/version "3.9.1"}}
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}
:test {:extra-paths ["test"]}
:runner {:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]}
:cljs {:extra-deps {thheller/shadow-cljs {:mvn/version "2.28.21"}}}
:splint {:extra-deps {io.github.noahtheduke/splint {:mvn/version "1.19.0"}}
:main-opts ["-m" "noahtheduke.splint"]}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "1.3.1"}
cider/cider-nrepl {:mvn/version "0.53.0"}
com.bhauman/rebel-readline {:mvn/version "0.1.5"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware]"
"--interactive"
"-f" "rebel-readline.main/-main"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}
slipset/deps-deploy {:mvn/version "0.2.1"}}
:ns-default build}}}