-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
30 lines (22 loc) · 1.25 KB
/
Copy pathdeps.edn
File metadata and controls
30 lines (22 loc) · 1.25 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
{:paths ["src" "resources"]
:deps {;; Clojure
org.clojure/clojure {:mvn/version "1.12.0"}
;; Vert.x Core - latest stable version
io.vertx/vertx-core {:mvn/version "5.0.4"}
;; Ring specification - for implementing the adapter
ring/ring-core {:mvn/version "1.13.0"}
;; Logging
org.slf4j/slf4j-api {:mvn/version "2.0.7"}}
:aliases {:dev {:extra-paths ["dev" "test"]
:extra-deps {org.clojure/tools.namespace {:mvn/version "1.5.0"}}}
:test {:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
org.babashka/http-client {:mvn/version "0.4.22"}
org.slf4j/slf4j-simple {:mvn/version "2.0.7"}}
:main-opts ["-m" "kaocha.runner"]
:extra-paths ["test"]}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}}}