-
Notifications
You must be signed in to change notification settings - Fork 26
/
deps.edn
43 lines (43 loc) · 2.32 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
41
42
43
{:paths ["src/clojure" "target/classes" "resources"]
:deps {org.yaml/snakeyaml {:mvn/version "2.3"}
org.flatland/ordered {:mvn/version "1.15.12"}}
:deps/prep-lib {:alias :build
:fn compile-java
:ensure "target/classes"}
:aliases
{;; we use babashka/neil for project attributes
;; publish workflow references these values (and automatically bumps patch)
:neil {:project {:version "1.0.28"
:name clj-commons/clj-yaml}}
:1.8 {:override-deps {org.clojure/clojure {:mvn/version "1.8.0"}}}
:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
:1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}}
: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"]}
:native-test
{:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:replace-paths ["target/native-test-classes"]
:extra-deps {com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}}}
:build
{:extra-paths ["build"]
:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
slipset/deps-deploy {:mvn/version "0.2.2"}
babashka/fs {:mvn/version "0.5.22"}}
:ns-default build}
;; for consistent linting we use a specific version of clj-kondo through the jvm
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.09.27"}}
:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:main-opts ["-m" "clj-kondo.main"]}
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.4.3"}}
:main-opts ["-m" "eastwood.lint" {:source-paths ["src/clojure"]
:test-paths ["test"]
:add-linters [:performance]}]}
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.10.1241"}
org.clojure/clojure {:mvn/version "1.12.0"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"} ;; to rid ourselves of logger warnings
}
:main-opts ["-m" "antq.core"]}}}