-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
58 lines (46 loc) · 2.66 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
{
:deps {
org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/core.async {:mvn/version "1.7.701"}
org.clojure/core.cache {:mvn/version "1.1.234"}
org.clojure/core.memoize {:mvn/version "1.1.266"}
;; https://github.com/dm3/clojure.java-time
clojure.java-time/clojure.java-time {:mvn/version "1.4.3"}
metosin/jsonista {:mvn/version "0.3.13"}
metosin/malli {:mvn/version "0.17.0"}
http-kit/http-kit {:mvn/version "2.8.0"}
mount/mount {:mvn/version "0.1.21"}
jarohen/chime {:mvn/version "0.3.3"}
; redis.clients/jedis {:mvn/version "5.2.0"}
; ring/ring-core {:mvn/version "1.13.0"}
;; https://github.com/f4b6a3/uuid-creator
com.github.f4b6a3/uuid-creator {:mvn/version "5.2.0"}
;; https://github.com/davidmoten/aws-lightweight-client-java
com.github.davidmoten/aws-lightweight-client-java {:mvn/version "0.1.20"}
;; https://github.com/clj-commons/iapetos
clj-commons/iapetos {:mvn/version "0.1.14"}
;; https://github.com/igrishaev/pg2
com.github.igrishaev/pg2-core {:mvn/version "0.1.33"}
com.github.igrishaev/pg2-honey {:mvn/version "0.1.33"}
com.github.igrishaev/pg2-hugsql {:mvn/version "0.1.33"}
; com.github.igrishaev/pg2-migration {:mvn/version "0.1.33"}
com.taoensso/telemere {:mvn/version "1.0.0-RC2"}
com.taoensso/telemere-slf4j {:mvn/version "1.0.0-RC2"}
org.slf4j/slf4j-api {:mvn/version "2.0.16"}
,}
:paths ["src"] ;; "java
:aliases {:dev {:extra-paths ["dev" "resources"]
:extra-deps {org.clojure/tools.namespace {:mvn/version "1.5.0"}
criterium/criterium {:mvn/version "0.4.6"}}}
; https://github.com/djblue/portal
; https://practical.li/clojure/data-inspector/portal/
:nrepl {:extra-deps {djblue/portal {:mvn/version "0.58.5"}
nrepl/nrepl {:mvn/version "1.3.1"}
cider/cider-nrepl {:mvn/version "0.52.0"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}
;; https://github.com/clojure/tools.build#release-information
:build {:extra-paths ["target/resources"]
:deps {io.github.clojure/tools.build {:mvn/version "0.10.7"}}
:ns-default build}}
,}