-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeps.edn
More file actions
29 lines (22 loc) · 1.44 KB
/
deps.edn
File metadata and controls
29 lines (22 loc) · 1.44 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
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.12.4"}
org.clojure/core.async {:mvn/version "1.8.741"}
org.jline/jline-terminal-ffm {:mvn/version "4.0.12"
:exclusions [org.jline/jline-native]}
org.jline/jline-reader {:mvn/version "4.0.12"}}
:aliases {:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:jvm-opts ["--enable-native-access=ALL-UNNAMED"]}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "1.6.0"}
cider/cider-nrepl {:mvn/version "0.58.0"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:examples {:extra-paths ["doc"]}
:user {:extra-paths ["user"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.7"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
:format {:extra-deps {dev.weavejester/cljfmt {:mvn/version "0.16.3"}}
:main-opts ["-m" "cljfmt.main" "check" "src" "test"]}
:lint {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2026.01.19"}}
:main-opts ["-m" "clj-kondo.main" "--fail-level" "error" "--lint" "src" "test"]}}}