-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
33 lines (27 loc) · 1022 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
28
29
30
31
32
33
{:paths ["src/lib" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}}
:aliases
{:dev {:extra-paths ["src/cli"]}
:run
{:main-opts ["-m" "clj-easy.stub.main"]}
:test
{:extra-paths ["test" "src/cli"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "b3fd0d2"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:build
{:extra-paths ["resources"]
:deps {io.github.clojure/tools.build {:tag "v0.5.1" :sha "21da7d4"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:ns-default build}
:clojure-lsp
{:replace-deps {com.github.clojure-lsp/clojure-lsp {:mvn/version "2021.11.16-16.52.14"}}
:main-opts ["-m" "clojure-lsp.main"]}
:cli
{:extra-paths ["src/cli"]
:extra-deps {org.clojure/tools.cli {:mvn/version "1.0.206"}}}
:native
{:extra-deps {com.github.clj-easy/graal-build-time {:mvn/version "0.1.4"}}}
:kaocha
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.887"}}}}}