-
Notifications
You must be signed in to change notification settings - Fork 7
/
deps.edn
40 lines (37 loc) · 2.47 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
{:paths ["src" "resources" "modules"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/tools.deps {:mvn/version "0.21.1449"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
ch.qos.logback/logback-classic {:mvn/version "1.5.8"}
version-clj/version-clj {:mvn/version "2.0.3"}
cli-matic/cli-matic {:mvn/version "0.5.4"}
babashka/fs {:mvn/version "0.5.22"}
org.ow2.asm/asm {:mvn/version "9.7"}
;; cljoc and cljdoc-analyzer should reference same version of cljdoc-shared
cljdoc/cljdoc-shared {:git/url "https://github.com/cljdoc/cljdoc-shared.git"
:git/sha "aeeba9d45e4a6f6efe9d2bee403e1dd11c8756c6"}}
:tools/usage {:ns-default cljdoc-analyzer.deps-tool}
:aliases {:test
{:extra-paths ["test/integration" "test-resources"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}}
:main-opts ["-m" "kaocha.runner"]}
:clj-kondo
{:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.09.27"}}
:main-opts ["-m" "clj-kondo.main"]}
:eastwood
{:extra-paths ["test/integration"]
:extra-deps {jonase/eastwood {:mvn/version "1.4.3"}}
:main-opts ["-m" "eastwood.lint" {:source-paths ["src"]
:test-paths ["test/integration"]}]}
:outdated
{:replace-deps {com.github.liquidz/antq {:mvn/version "2.10.1241"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"} ;; to rid ourselves of logger warnings
}
:main-opts ["-m" "antq.core"
"--exclude=org.clojure/[email protected]" ;; https://clojure.atlassian.net/browse/TNS-59
"--exclude=org.clojure/[email protected]" ;; https://ask.clojure.org/index.php/12965/tools-namespace-longer-returns-declared-metadata-namespace
"--exclude=org.clojure/[email protected]" ;; https://ask.clojure.org/index.php/12965/tools-namespace-longer-returns-declared-metadata-namespace
"--exclude=org.clojure/[email protected]" ;; https://ask.clojure.org/index.php/12965/tools-namespace-longer-returns-declared-metadata-namespace
"--exclude=org.clojure/[email protected]" ;; not an official supported release
]}}}