-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdeps.edn
More file actions
42 lines (39 loc) · 2.59 KB
/
deps.edn
File metadata and controls
42 lines (39 loc) · 2.59 KB
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
{:paths ["src" "resources" "modules"]
:deps {org.clojure/clojure {:mvn/version "1.12.4"}
org.clojure/tools.deps {:mvn/version "0.29.1598"}
org.clojure/tools.logging {:mvn/version "1.3.1"}
ch.qos.logback/logback-classic {:mvn/version "1.5.32"}
version-clj/version-clj {:mvn/version "2.0.3"}
org.babashka/cli {:mvn/version "0.8.67"}
babashka/fs {:mvn/version "0.5.33"}
babashka/process {:mvn/version "0.6.25"}
org.ow2.asm/asm {:mvn/version "9.9.1"}
;; 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 "adbab7d7471509bb49c0c24cf33ffa161f7fa1e0"}}
: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"}
nubank/matcher-combinators {:mvn/version "3.10.0"}}
:main-opts ["-m" "kaocha.runner"]}
:clj-kondo
{:extra-deps {clj-kondo/clj-kondo {:mvn/version "2026.04.15"}}
: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.11.1276"}
org.slf4j/slf4j-simple {:mvn/version "2.0.17"} ;; to rid ourselves of logger warnings
}
:main-opts ["-m" "antq.core"
"--exclude=org.clojure/tools.namespace@1.4.1" ;; https://clojure.atlassian.net/browse/TNS-59
"--exclude=org.clojure/tools.namespace@1.4.2" ;; https://ask.clojure.org/index.php/12965/tools-namespace-longer-returns-declared-metadata-namespace
"--exclude=org.clojure/tools.namespace@1.4.3" ;; https://ask.clojure.org/index.php/12965/tools-namespace-longer-returns-declared-metadata-namespace
"--exclude=org.clojure/tools.namespace@1.4.4" ;; https://ask.clojure.org/index.php/12965/tools-namespace-longer-returns-declared-metadata-namespace
"--exclude=org.clojure/clojurescript@1.11.121" ;; not an official supported release
]}}}