-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
15 lines (15 loc) · 882 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.2"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:git/tag "v0.5.0" :sha "48c3c67f98362ba1e20526db4eeb6996209c050a"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:jar {:extra-deps {seancorfield/depstar {:mvn/version "1.1.128"}}
:main-opts ["-m" "hf.depstar.jar" "bulgogi.jar"]}
:install {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.1"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "bulgogi.jar"]}
:deploy {:extra-deps {slipset/deps-deploy {:mvn/version "0.1.1"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "bulgogi.jar"]}}}