-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdeps.edn
32 lines (31 loc) · 1.71 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
; Copyright 2018- Rahul De
;
; Use of this source code is governed by an MIT-style
; license that can be found in the LICENSE file or at
; https://opensource.org/licenses/MIT.
{:paths ["src" "resources"]
:deps {aero/aero {:mvn/version "1.1.6"}
ch.qos.logback/logback-classic {:mvn/version "1.5.18"}
com.rabbitmq/stream-client {:mvn/version "1.0.0"}
com.xtdb/xtdb-core {:mvn/version "1.24.5"}
common/common {:local/root "../common"}
failjure/failjure {:mvn/version "2.3.0"}
integrant/integrant {:mvn/version "0.13.1"}
io.github.lispyclouds/contajners {:git/sha "263700fdfd4ca077401f9d6430611d6e442925fd"}
org.babashka/http-client {:mvn/version "0.4.22"}
org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/data.json {:mvn/version "2.5.1"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
org.kamranzafar/jtar {:mvn/version "2.3"}}
:aliases {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
org.clojure/test.check {:mvn/version "1.1.1"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.1002"}}
:extra-paths ["test"]
:main-opts ["-m" "kaocha.runner"]
:jvm-opts ["--enable-preview"]}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "RELEASE"}
cider/cider-nrepl {:mvn/version "RELEASE"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]
:jvm-opts ["--enable-preview"]}
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.8" :git/sha "2fdfd66"}}
:ns-default build}}}