-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
29 lines (29 loc) · 1.44 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" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/tools.cli {:mvn/version "1.0.219"}
io.github.clojure/tools.build {:mvn/version "0.10.3"}
babashka/process {:mvn/version "0.5.22"}
selmer/selmer {:mvn/version "1.12.61"}}
:aliases
{:run {:main-opts ["-m" "noahtheduke.clein"]}
; :provided {:extra-deps {nubank/matcher-combinators {:mvn/version "3.8.5"}}}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "1.0.0"}
com.bhauman/rebel-readline {:mvn/version "0.1.4"}
cider/cider-nrepl {:mvn/version "0.42.1"}}
:main-opts ["-m" "nrepl.cmdline"
"--interactive"
"--middleware" "[cider.nrepl/cider-middleware]"
"-f" "rebel-readline.main/-main"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}
slipset/deps-deploy {:mvn/version "0.2.1"}}
:ns-default build}
:clein/build {:lib io.github.noahtheduke/clein
:main noahtheduke.clein
:version "resources/CLEIN_VERSION"
:url "https://github.com/noahtheduke/clein"
:license {:name "MPL-2.0"
:url "https://mozilla.org/MPL/2.0"}
:src-dirs ["src"]
:resource-dirs ["resources"]}
:prep {:deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
:ns-default prep}}}