-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
36 lines (34 loc) · 1.72 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
{:paths [
"src/clj" ; Clojure source files
"src/cljc" ; Clojure source files
"test/clj" ; Clojure source files
"test/cljc" ; Clojure source files
]
:deps {
org.clojure/clojure {:mvn/version "1.12.0-alpha1"} ; {:mvn/version "1.11.1"}
criterium/criterium {:mvn/version "0.4.6"}
org.clj-commons/claypoole {:mvn/version "1.2.2"}
prismatic/schema {:mvn/version "1.4.1"}
tupelo/tupelo {:mvn/version "22.08.03"}
}
:aliases {
:test {:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:extra-paths ["test/resources"]
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test
:exec-args {
:patterns ["tst.*"] ; mandatory to detect testing ns's like `tst.demo.core`
}
}
:test-refresh {:extra-paths ["test/resources"]
:extra-deps {com.jakemccrary/test-refresh {:mvn/version "0.25.0"}}
:main-opts ["-m" "com.jakemccrary.test-refresh"
; "--dir" "test"
]
}
; This target finds dependencies with outdated version numbers
:old {:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}} ; NOT `:extra-deps` !!!
:main-opts ["-m" "antq.core"]
}
}
}