-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
81 lines (67 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
{
:deps
{
org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/core.async {:mvn/version "1.3.610"}
metosin/spec-tools {:mvn/version "0.10.5"}
metosin/jsonista {:mvn/version "0.3.1"}
metosin/reitit {:mvn/version "0.5.12"}
metosin/malli {:mvn/version "0.3.0"}
cprop/cprop {:mvn/version "0.1.17"}
mount/mount {:mvn/version "0.1.16"}
javax.servlet/servlet-api {:mvn/version "2.5"}
http-kit/http-kit {:mvn/version "2.5.3"}
ring/ring-core {:mvn/version "1.9.1"}
hiccup/hiccup {:mvn/version "1.0.5"}
;
io.minio/minio {:mvn/version "8.1.0"}
;
;; psql:
org.postgresql/postgresql {:mvn/version "42.2.19"}
com.zaxxer/HikariCP {:mvn/version "4.0.3"}
com.github.seancorfield/next.jdbc {:mvn/version "1.1.646"}
com.github.seancorfield/honeysql {:mvn/version "2.0.0-alpha3"}
; nilenso/honeysql-postgres {:mvn/version "0.4.112"}
migratus/migratus {:mvn/version "1.3.5"}
com.taoensso/timbre {:mvn/version "5.1.2"}
com.fzakaria/slf4j-timbre {:mvn/version "0.3.21"}
org.slf4j/slf4j-api {:mvn/version "1.7.30"}
;;
;; https://github.com/ovotech/ring-jwt
ovotech/ring-jwt {:mvn/version "2.2.1"}}
;; https://github.com/auth0/java-jwt
;; com.auth0/java-jwt {:mvn/version "3.10.3"} ;; already imported in ring-jwt
;
:paths ["src"]
:aliases
{
:dev
{
:extra-paths ["dev" "resources" "target/devres"]
:extra-deps
{
;; clj-kondo/clj-kondo {:mvn/version "2021.03.03"}
;; hashp/hashp {:mvn/version "0.2.1"}
org.clojure/tools.namespace {:mvn/version "1.1.0"}
criterium/criterium {:mvn/version "0.4.6"}}}
;
:nrepl
{ :extra-deps
{ nrepl/nrepl {:mvn/version "0.8.3"}
cider/cider-nrepl {:mvn/version "0.25.9"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
;
;; https://github.com/seancorfield/depstar
:depstar
{
:replace-deps
{ com.github.seancorfield/depstar {:mvn/version "2.0.206"}}
:ns-default hf.depstar}
;
:uber-resources {:extra-paths ["resources" "target/resources"]}}
;; ;; ;; ;;
; :mvn/repos
; { "central" {:url "https://repo1.maven.org/maven2/"}
; "clojars" {:url "https://clojars.org/repo"}}
,}
;;.