-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
30 lines (23 loc) · 875 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
{:paths
["src"]
:deps
{org.clojure/clojure {:mvn/version "1.10.1"}}
:aliases
{:dev
{:extra-paths ["dev"]}
:test
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.0.0"}}}
:runner
{:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}}
:main-opts ["-m" "cognitect.test-runner"]}
:jar
{:extra-deps {seancorfield/depstar {:mvn/version "1.1.117"}}
:main-opts ["-m" "hf.depstar.jar" "tock.jar"]}
:install
{:extra-deps {slipset/deps-deploy {:mvn/version "0.1.0"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "tock.jar"]}
:deploy
{:extra-deps {slipset/deps-deploy {:mvn/version "0.1.0"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "tock.jar"]}}}