-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
44 lines (35 loc) · 1.75 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
{:paths ["src" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.12.0"}
integrant/integrant {:mvn/version "0.13.1"}
compojure/compojure {:mvn/version "1.7.1"}
cprop/cprop {:mvn/version "0.1.20"}
ring/ring-core {:mvn/version "1.13.0"},
ring/ring-jetty-adapter {:mvn/version "1.13.0"}
ring/ring-defaults {:mvn/version "0.5.0"}
dev.weavejester/ragtime {:mvn/version "0.10.1"}
com.github.seancorfield/honeysql {:mvn/version "2.6.1203"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.955"}
org.postgresql/postgresql {:mvn/version "42.7.4"}
;; TODO
com.mchange/c3p0 {:mvn/version "0.10.1"}
clj-spotify/clj-spotify {:mvn/version "0.1.10"}
hiccup/hiccup {:mvn/version "1.0.5"}
org.clj-commons/humanize {:mvn/version "1.0"}
org.clojure/data.json {:mvn/version "2.5.0"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"}
http-kit/http-kit {:mvn/version "2.8.0"}
jarohen/chime {:mvn/version "0.3.3"}
com.taoensso/timbre {:mvn/version "6.6.1"}
}
:aliases
{:dev {:extra-paths ["dev"]
:extra-deps {integrant/repl {:mvn/version "0.4.0"}}}
:server {:main-opts ["-m" "kino.system"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}
: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}}}