-
Notifications
You must be signed in to change notification settings - Fork 5
/
deps.edn
22 lines (22 loc) · 1.09 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
{:deps {org.clojure/clojure {:mvn/version "1.11.3"}}
:paths ["src" "resources"]
:aliases
{:svm
;; this library is "provided"
{:extra-deps {org.graalvm.sdk/nativeimage {:mvn/version "24.0.2"}}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
babashka/fs {:mvn/version "0.5.21"}
babashka/process {:mvn/version "0.5.22"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
:uber {:extra-paths ["test"]}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.08.01"}}
:main-opts ["-m" "clj-kondo.main"]}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}
babashka/process {:mvn/version "0.5.22"}}
:exec-fn cognitect.test-runner.api/test}
:outdated {:deps {org.slf4j/slf4j-simple {:mvn/version "2.0.13"} ;; to rid ourselves of logger warnings
com.github.liquidz/antq {:mvn/version "2.8.1206"}}
:main-opts ["-m" "antq.core"]}}}