-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
23 lines (23 loc) · 1.14 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.0"}}}
:project {:jvm-opts ["-Xmx12G"]
:extra-deps
{com.xtdb/xtdb-core {:mvn/version "1.23.1"}
com.xtdb/xtdb-rocksdb {:mvn/version "1.23.1"}}}
:runner
{:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "2d69f33d7980c3353b246c28f72ffeafbd9f2fab"}}
:exec-fn cognitect.test-runner.api/test}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/jar
:exec-args {:jar "pensieve.jar" :sync-pom true}}
:install {:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :local :artifact "pensieve.jar"}}
:deploy {:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote :artifact "pensieve.jar"}}}}