forked from sicmutils/sicmutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
70 lines (62 loc) · 2.25 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{:paths ["src" "resources"]
:jvm-opts ["-Djava.util.logging.config.file=logging.properties"]
:deps
{org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/core.match {:mvn/version "1.0.1"}
org.clojure/math.numeric-tower {:mvn/version "0.0.4"}
com.taoensso/timbre {:mvn/version "6.0.4"}
dm3/stopwatch {:mvn/version "0.1.1" :exclusions [org.clojure/clojurescript]}
org.apache.commons/commons-math3 {:mvn/version "3.6.1"}
org.babashka/sci {:mvn/version "0.6.37"}}
:aliases
{:dev {:extra-paths ["dev"]
:jvm-opts ["-Xms6g" "-Xmx8g" "-server"]}
;; This entry sets up the REPL environment for local development. Run a full
;; repl with `clj -A:test:dev:repl`.
:repl
{:main-opts
["-e"
"(do (require 'sicmutils.env)
(in-ns 'sicmutils.env)
(str \"Clojure \" (clojure-version)))"
"-r"]}
:cljs
{:extra-deps
{org.clojure/clojurescript {:mvn/version "1.11.60"}
thheller/shadow-cljs {:mvn/version "2.20.14"}}}
:test
;; layer this in to get access to everything in the test directory, plus the
;; dependencies needed to run the tests.
{:extra-paths ["test"]
:extra-deps
{com.gfredericks/test.chuck {:mvn/version "0.2.14"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0"
:git/sha "b3fd0d2"}
io.github.nextjournal/clerk
{:git/sha "d08c26043efe19a92fe33dd9eb4499e304e4cff7"}
org.clojure/test.check {:mvn/version "1.1.1"}
hiccup/hiccup {:mvn/version "1.0.5"}
same/ish {:mvn/version "0.1.4"}}}
:build
;; build.clj tool.
{:deps {io.github.clojure/tools.build {:git/tag "v0.8.2" :git/sha "ba1a2bf"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:ns-default build}
;; See https://github.com/cognitect-labs/test-runner for invocation
;; instructions.
:runner
{:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test
:exec-args ["test"]}
:coverage
;; Invoke with clj -M:test:coverage <args>
{:main-opts ["-m" "cloverage.coverage"
"-p" "src"
"-s" "test"]
:extra-deps {cloverage/cloverage {:mvn/version "1.2.4"}}}
:lint
;; Invoke with clj -M:test:lint <kondo-args>
{:extra-paths ["test"]
:main-opts ["-m" "clj-kondo.main"]
:replace-deps {clj-kondo/clj-kondo {:mvn/version "RELEASE"}}}}}