forked from seancorfield/depstar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
35 lines (35 loc) · 1.81 KB
/
deps.edn
File metadata and controls
35 lines (35 loc) · 1.81 KB
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
29
30
31
32
33
34
35
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/tools.deps.alpha {:mvn/version "0.11.905"}
org.clojure/tools.logging {:mvn/version "1.1.0"}
org.clojure/tools.namespace {:mvn/version "1.1.0"}
org.apache.logging.log4j/log4j-core {:mvn/version "2.14.1"}
org.slf4j/slf4j-simple {:mvn/version "1.7.30"}
com.workframe/garamond {:mvn/version "0.4.0"}}
:aliases {:test {:extra-paths ["test"]}
: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"]}
:jar {:exec-fn hf.depstar/jar
:exec-args {:jar "depstar.jar" :sync-pom true}}
:deploy {:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote :artifact "depstar.jar"}}
;; the following aliases are all tests for particular issues:
:test-issue-5
{:replace-deps {clj-time/clj-time {:mvn/version "0.15.2"}
java-time-literals {:mvn/version "2018-04-06"}}}
:test-issue-7
{:replace-deps {javax.xml.bind/jaxb-api {:mvn/version "2.3.0"}}}
:test-issue-22
{:replace-deps {javax.xml.bind/jaxb-api {:mvn/version "2.3.0"}}}
:test-issue-64
{:extra-paths ["test-64"]}
:direct-linking ["-Dclojure.compiler.direct-linking=true"]
:test-issue-65
{:extra-paths ["test-65"]}
:test-issue-66
{:replace-deps {org.danielsz/lang-utils {:mvn/version "0.1.3"}}}}}