-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
23 lines (21 loc) · 1.26 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
{:deps {clj-commons/clj-yaml {:mvn/version "1.0.29"}
clj-sub-command/clj-sub-command {:mvn/version "0.6.0"}
io.aviso/pretty {:mvn/version "1.4.4"}
org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clojure/tools.deps {:mvn/version "0.21.1460"}}
:aliases {:native-image {:extra-deps
{clj.native-image/clj.native-image
{:git/url "https://github.com/taylorwood/clj.native-image.git"
:sha "4604ae76855e09cdabc0a2ecc5a7de2cc5b775d6"}}
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
:main-opts ["-m" "clj.native-image" "bosslint.main"
"--diagnostics-mode"
"--initialize-at-build-time"
"--no-fallback"
"-H:Name=bosslint"]}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}}}