-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
21 lines (19 loc) · 1017 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}
com.h2database/h2 {:mvn/version "2.3.232"}
hato/hato {:mvn/version "1.0.0"}
cheshire/cheshire {:mvn/version "5.13.0"}} ; required by hato for JSON parsing
:aliases
{:dev {:extra-paths ["dev"]}
: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"]
:exec-fn cognitect.test-runner.api/test}
:splint {:extra-deps {io.github.noahtheduke/splint {:mvn/version "1.18.0"}
org.clojure/clojure {:mvn/version "1.11.1"}}
:main-opts ["-m" "noahtheduke.splint"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}}}