-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
29 lines (25 loc) · 1.36 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"]
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/tools.namespace {:mvn/version "1.0.0"}
cljfmt {:mvn/version "0.6.4"}}
:aliases
{:test {:extra-paths ["test" "target/doctest"]
:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "f7ef16dc3b8332b0d77bc0274578ad5270fbfedd"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"
"-d" "target/doctest"]}
:cov {:extra-paths ["test" "target/doctest"]
:extra-deps {cloverage {:mvn/version "1.1.2"}}
:main-opts ["-m" "cloverage.coverage"
"-p" "src"
"-s" "test"
"-s" "target/doctest"]}
:uberjar {:extra-deps {seancorfield/depstar {:mvn/version "0.5.2"}}
:main-opts ["-m" "hf.depstar.uberjar" "jameslintaylor.doctest.jar"
"-C" "-m" "jameslintaylor.doctest"]}
:install {:extra-deps {deps-deploy {:mvn/version "0.0.9"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "jameslintaylor.doctest.jar"]}
:deploy {:extra-deps {deps-deploy {:mvn/version "0.0.9"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "jameslintaylor.doctest.jar"]}}}