-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
19 lines (19 loc) · 875 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/tools.cli {:mvn/version "1.0.206"}
instaparse/instaparse {:mvn/version "1.4.10"}
org.clojure/core.match {:mvn/version "1.0.0"}}
:aliases
{:run-m {:main-opts ["-m" "wtf.halt.hicdown.main"]}
:run-x {:ns-default wtf.halt.hicdown.main
:exec-fn greet
:exec-args {:name "Clojure"}}
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.4.0" :git/sha "54e39ae"}}
:ns-default build}
:format {:deps {cljfmt/cljfmt {:mvn/version "0.8.0"}}
:main-opts ["-m" "cljfmt.main"]}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.0"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}}}}}