-
Notifications
You must be signed in to change notification settings - Fork 2
/
deps.edn
48 lines (38 loc) · 1.37 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
{:aliases
{:cljs
{:extra-deps {thheller/shadow-cljs {:mvn/version "2.11.23"}}
:main-opts ["-m" "shadow.cljs.devtools.cli"]}
:deploy
{:exec-args {:artifact "compiled/jvm/release.jar"
:installer :remote}
:exec-fn deps-deploy.deps-deploy/deploy
:extra-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}}
:dev
{:extra-paths ["src/dev"
"src/example"
"src/test"]}
:jar
{:exec-args {:jar "compiled/jvm/release.jar"
:sync-pom true}
:exec-fn hf.depstar/jar
:replace-deps {seancorfield/depstar {:mvn/version "2.0.171"}}}
:install
{:exec-args {:artifact "compiled/jvm/release.jar"
:installer :local}
:exec-fn deps-deploy.deps-deploy/deploy
:extra-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}}
:kaocha
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.829"}}}
:malli
{:extra-deps {metosin/malli {:git/url "https://github.com/metosin/malli"
:sha "0e5e3f1ee9bc8d6ea60dc16e59abf9cc295ab510"}}}
:test
{:extra-paths ["src/test"]}
:wasmer
{:extra-deps {org.wasmer/wasmer-jni-amd64-linux {:local/root "wasmer/runtime/wasmer-jni-amd64-linux-0.3.0.jar"}}
:extra-paths ["wasm/src/main"]}}
:deps
{io.helins/binf {:mvn/version "1.1.0-beta0"}
metosin/malli {:mvn/version "0.4.0"}}
:paths
["src/main"]}