-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
72 lines (56 loc) · 2.51 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.0"}
;; lifecycle
integrant/integrant {:mvn/version "0.8.0"}
;; logging
org.clojure/tools.logging {:mvn/version "1.2.4"}
ch.qos.logback/logback-classic {:mvn/version "1.2.10"}
;; config
;; - https://github.com/juxt/aero
aero/aero {:mvn/version "1.1.6"}
;; spec
metosin/malli {:mvn/version "0.8.0"}
;; XT
com.xtdb/xtdb-core {:mvn/version "1.22.1"}
;;com.xtdb/xtdb-rocksdb {:mvn/version "1.20.0"}
;; json
cheshire/cheshire {:mvn/version "5.10.2"}
;; http
clj-http/clj-http {:mvn/version "3.12.3"}
;; for :as :x-www-form-urlencoded
ring/ring-codec {:mvn/version "1.2.0"}
;; graphs
;; - https://github.com/Engelberg/ubergraph
ubergraph/ubergraph {:mvn/version "0.8.2"}
;; yes, test.check is a application dependency
org.clojure/test.check {:mvn/version "1.1.1"}
;; CLI
;; - https://github.com/clojure/tools.cli
org.clojure/tools.cli {:mvn/version "1.0.206"}
;; HTML templating
selmer/selmer {:mvn/version "1.12.55"}
}
:aliases {:test
{:extra-paths ["test"]
:extra-deps {;;org.clojure/test.check {:mvn/version "1.1.1"}
lambdaisland/kaocha {:mvn/version "1.64.1010"}
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}}}
:dev
{:extra-paths ["env/dev/clj" "env/dev/resources"]
:extra-deps {;; https://github.com/babashka/SCI
org.babashka/sci {:mvn/version "0.3.1"}
;; https://github.com/gfredericks/test.chuck
com.gfredericks/test.chuck {:mvn/version "0.2.13"}
;; https://github.com/djblue/portal
djblue/portal {:mvn/version "0.35.1"}}
:main-opts []}
:run-tests
{:extra-paths ["env/test/resources"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "b3fd0d2"}}
:exec-fn cognitect.test-runner.api/test
:main-opts ["-m" "cognitect.test-runner"]}
:build
{:deps {io.github.clojure/tools.build
{:git/tag "v0.8.2" :git/sha "ba1a2bf"}}
:ns-default build}}}