-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdeps.edn
29 lines (28 loc) · 1.34 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
{:paths ["src"]
:deps {org.postgresql/postgresql {:mvn/version "42.3.5"}
com.cognitect/transit-clj {:mvn/version "1.0.329"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/clojure {:mvn/version "1.11.1"}
lambdaisland/kaocha {:mvn/version "1.66.1034"}
metosin/jsonista {:mvn/version "0.3.5"}
org.clojure/test.check {:mvn/version "1.1.1"}
com.github.seancorfield/next.jdbc {:mvn/version "1.2.780"}
mvxcvi/puget {:mvn/version "1.3.2"}
ch.qos.logback/logback-classic {:mvn/version "1.4.14"}}}
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.8.0" :git/sha "9bd8b8a"}}
:ns-default build
;; To make Cursive code navigation work:
:extra-paths ["build"]}
:dev
{:extra-paths ["dev/src"]
:extra-deps {nrepl/nrepl {:mvn/version "1.1.0"}
com.github.gnl/playback {:mvn/version "0.5.4"}}
:main-opts ["-m" "nrepl.cmdline"]}
:examples {:extra-paths ["examples"]
:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.2.780"}
mvxcvi/puget {:mvn/version "1.3.2"}}}
:outdated
{:extra-deps {com.github.liquidz/antq {:mvn/version "1.6.774"}}
:main-opts ["-m" "antq.core"]}}}