-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
28 lines (27 loc) · 1.23 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
clj-http/clj-http {:mvn/version "3.10.3"}
org.clojure/data.json {:mvn/version "1.0.0"}}
:aliases
{: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"
:sha "b6b3193fcc42659d7e46ecd1884a228993441182"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]}
:coverage
{:extra-paths ["test"]
:extra-deps {cloverage/cloverage {:mvn/version "RELEASE"}}
:main-opts ["-m"
"cloverage.coverage"
"-p" "src"
"-s" "test"
"--fail-threshold" "90"]}
:jar {:extra-deps {seancorfield/depstar {:mvn/version "1.1.128"}}
:main-opts ["-m" "hf.depstar.jar" "github-api-lib.jar"]}
:install {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.1"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "github-api-lib.jar"]}
:deploy {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.1"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "github-api-lib.jar"]}}}