-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
62 lines (48 loc) · 2.48 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{:paths ["src" "zrc" "test-zrc" "test-temp-zrc"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
cheshire/cheshire {:mvn/version "5.10.0"}
zen-lang/zen {:git/url "https://github.com/zen-lang/zen"
:sha "edc2a7ce7814ead18286b3c8e196ccc21a124641"}
fipp/fipp {:mvn/version "0.6.24"}
http-kit/http-kit {:mvn/version "2.5.3"}
inflections/inflections {:mvn/version "0.13.2"}
org.eclipse.jetty.websocket/websocket-client {:mvn/version "9.4.43.v20210629"}
org.bouncycastle/bcpkix-jdk15on {:mvn/version "1.52"}
json-schema/json-schema {:mvn/version "0.2.0-RC11"}
com.rpl/specter {:mvn/version "1.1.3"}}
:aliases
{:nrepl
{:extra-paths []
:extra-deps {cider/cider-nrepl {:mvn/version "LATEST"}
hiccup/hiccup {:mvn/version "2.0.0-alpha2"}}
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]}
:test {:extra-paths ["test" "lib/example" "lib/auth"]
:extra-deps {healthsamurai/matcho {:mvn/version "0.3.7"}
hiccup/hiccup {:mvn/version "2.0.0-alpha2"}}
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]}
:outdated {:extra-deps {olical/depot {:mvn/version "1.7.0"}}
:main-opts ["-m" "depot.outdated.main"]}
:kaocha
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.0-612"}}
:extra-paths ["runner" "test"]
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "kaocha.runner" "--config-file" "test/test.edn"]}
:runner {:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner"
:sha "3cb0a9daf1cb746259dc8309b218f9211ad3b33b"}}
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "test-runner"]}
:build
{:extra-paths ["build"]
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]
:extra-deps {cambada/cambada {:git/url "https://github.com/HealthSamurai/cambada"
:sha "a8ccf922e516e3249e96ae63dadd91d5f01e83f5"}}
:main-opts ["-m" "build"]}
:depstar {:extra-deps
{seancorfield/depstar {:mvn/version "1.1.133"}}
:ns-default hf.depstar
:main-class zen.doc.core
:exec-args {}}
:deploy
{:extra-deps {slipset/deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "target/zen-doc.jar"]}
}}