forked from clojure/tools.deps.alpha
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdeps.edn
More file actions
31 lines (28 loc) · 1.3 KB
/
deps.edn
File metadata and controls
31 lines (28 loc) · 1.3 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
{:paths ["src/main/clojure" "src/main/resources"]
:deps {
org.clojure/clojure {:mvn/version "1.12.5"}
org.clojure/tools.deps.edn {:mvn/version "0.9.27"}
eu.maveniverse.maven.mima/context {:mvn/version "2.4.44"}
eu.maveniverse.maven.mima.runtime/standalone-static {:mvn/version "2.4.44"}
eu.maveniverse.maven.mima.extensions/mhc4 {:mvn/version "2.4.44"}
eu.maveniverse.maven.mima.extensions/mmr {:mvn/version "2.4.44"}
org.clojure/tools.deps.maven-s3-transporter {:mvn/version "0.1.3"}
org.clojure/data.xml {:mvn/version "0.2.0-alpha11"}
org.clojure/tools.gitlibs {:mvn/version "2.6.217"}
org.clojure/tools.cli {:mvn/version "1.4.256"}
}
:aliases {
:test {:extra-paths ["src/test/clojure"]}
;; clj -M:lint
:lint {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2026.04.15"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src/main/clojure" "--lint" "src/test/clojure"]}
;; clj -M:cve
:cve {:extra-deps {io.github.clj-holmes/clj-watson {:git/tag "v6.1.0" :git/sha "be98e4d"}}
:extra-paths [".clj-watson"]
:jvm-opts ["--illegal-access=deny"]
:main-opts ["-m" "clj-watson.cli" "scan" "-p" "deps.edn"]}
;; clj -M:outdated
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1276"}}
:main-opts ["-m" "antq.core"]}
}
}