-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeps.edn
27 lines (23 loc) · 980 Bytes
/
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
{:paths ["src" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.11.2"}
com.lambdaisland/dotenv {:mvn/version "0.2.5"}
com.lambdaisland/cli {:mvn/version "0.18.74"}}
:aliases
{:clojure
{:extra-deps {babashka/babashka {:mvn/version "1.3.190" :scope "provided"}
org.clojure/tools.deps.alpha {:mvn/version "0.15.1254"}
com.nextjournal/beholder {:mvn/version "1.0.2"}
thheller/shadow-cljs {:mvn/version "2.28.3"}
;; prevent tools.deps.alpha from dragging in an old guava
com.google.guava/guava {:mvn/version "33.1.0-jre"}
com.lambdaisland/classpath {:mvn/version "0.5.48"}}}
:dev
{:extra-paths ["dev"]
:extra-deps {djblue/portal {:mvn/version "RELEASE"}}}
:test
{:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}
:self-deps
{:extra-deps {com.lambdaisland/launchpad-deps {:local/root "resources/launchpad"}}}
}}