-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
23 lines (23 loc) · 1.25 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"]
:jvm-opts ["-Xmx6g"]
:deps {org.clojure/clojure {:mvn/version "1.10.0"}
;; profiling
cljol/cljol {:git/url "https://github.com/jafingerhut/cljol"
:sha "11d4aa72fdd19248bd7600fb7b5cde7189f32938"}
com.taoensso/tufte {:mvn/version "2.2.0"}
;; logging
com.taoensso/timbre {:mvn/version "4.10.0"}}
:aliases {:dev {:extra-paths ["test" "examples" "dev"]
:extra-deps {}}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.193"}}
:exec-fn hf.depstar/jar
:exec-args {:jar "TightlyPackedTrie.jar" :sync-pom true}}
: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"]}
:deploy {:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:artifact "TightlyPackedTrie.jar"}}}}