-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
43 lines (37 loc) · 1.59 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"
"resources"]
;; Needed to build and test w/ clojure
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clj-commons/pretty {:mvn/version "3.3.1"}
org.clj-commons/humanize {:mvn/version "1.1"}
;; Normally provided by Babashka, but needed when using cli-tools in a Clojure
;; application:
babashka/fs {:mvn/version "0.5.24"}
babashka/process {:mvn/version "0.5.22"}
selmer/selmer {:mvn/version "1.12.61"}}
:net.lewisship.build/scm
{:url "https://github.com/hlship/cli-tools"
:license :asl}
:aliases
{
;; clj -X:test
:test
{:extra-paths ["test" "test-resources"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}
io.github.tonsky/clj-reload {:mvn/version "0.7.1"}
nubank/matcher-combinators {:mvn/version "3.9.1"}
babashka/babashka {:mvn/version "1.12.196"}}
:exec-fn cognitect.test-runner.api/test
:jvm-opts ["-Dclj-commons.ansi.enabled=true"]
:exec-args
{:patterns [".*-tests?$"]}}
:1.11
{:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
:lint
{:deps {clj-kondo/clj-kondo {:mvn/version "2025.01.16"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src" "test"]}
:build
{:deps {io.github.hlship/build-tools {:git/tag "0.10.2" :git/sha "3c446e4"}}
:ns-default build}}}