-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
28 lines (28 loc) · 1.34 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.3"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}}}
:dev {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
criterium/criterium {:mvn/version "0.4.6"}}}
:test-clj
{:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]}
:test-cljs
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}}
:main-opts ["-m" "cljs-test-runner.main"]}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.303"}}
:exec-fn hf.depstar/jar
:exec-args {:jar "crockery.jar" :sync-pom true}}
:install {:replace-deps {slipset/deps-deploy {:mvn/version "0.2.1"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :local :artifact "crockery.jar"}}
:deploy {:replace-deps {slipset/deps-deploy {:mvn/version "0.2.1"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:sign-releases? true
:artifact "crockery.jar"}}}}