-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
23 lines (22 loc) · 1.02 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
{:paths ["src" "resources" "test"],
:deps
{org.clojure/clojure {:mvn/version "1.12.0"},
org.clojure/tools.reader {:mvn/version "1.5.0"},
instaparse/instaparse {:mvn/version "1.5.0"},
org.clojure/math.numeric-tower {:mvn/version "0.1.0"},
org.clojure/data.json {:mvn/version "2.5.0"},
meander/epsilon {:mvn/version "0.0.650"},
org.scicloj/clay {:mvn/version "2-beta23"}
io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:aliases
{;; Run with clj -T:build function-in-build
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.5" :git/sha "2a21b7a"}}
:ns-default build}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:outdated {;; Note that it is `:deps`, not `:extra-deps`; run it as clj -M:outdated
:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}}
}