-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
30 lines (29 loc) · 1.19 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
{:paths
["src" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
ring/ring-core {:mvn/version "1.12.2"}
ring/ring-defaults {:mvn/version "0.5.0"}
ring/ring-jetty-adapter {:mvn/version "1.12.2"}
ring/ring-devel {:mvn/version "1.12.2"}
ring/ring-json {:mvn/version "0.5.1"}
ring-logger/ring-logger {:mvn/version "1.1.1"}
clj-log4j2/clj-log4j2 {:mvn/version "0.4.0"}
metosin/jsonista {:mvn/version "0.3.11"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}
org.xerial/sqlite-jdbc {:mvn/version "3.46.1.0"}
compojure/compojure {:mvn/version "1.7.1"}}
:aliases
{:run-m {:main-opts ["-m" "clj.pb"]
:jvm-opts
["-Dclojure.tools.logging.factory=clojure.tools.logging.impl/log4j2-factory"]}
:run-x {:ns-default clj.pb
:exec-fn greet
:exec-args {:name "Clojure"}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}}}