-
Notifications
You must be signed in to change notification settings - Fork 39
/
deps.edn
57 lines (48 loc) · 2.01 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
{:paths ["resources" "src"]
:deps
{org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/tools.cli {:mvn/version "1.0.219"}
org.clojure/tools.reader {:mvn/version "1.3.7"}
com.googlecode.java-diff-utils/diffutils {:mvn/version "1.3.0"}
rewrite-clj/rewrite-clj {:mvn/version "1.1.47"}}
:aliases
{:build
{:deps {org.clojure/clojure {:mvn/version "1.11.1"}
io.github.clojure/tools.build {:mvn/version "0.9.6"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
:native-image
{:extra-deps {com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}}}
:run
{:main-opts ["-m" "cljstyle.main"]}
:repl
{:extra-paths ["dev" "test"]
:extra-deps {org.clojure/tools.namespace {:mvn/version "1.4.4"}
com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.1.1"}
mvxcvi/puget {:mvn/version "1.3.4"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
"-XX:+UnlockDiagnosticVMOptions"
"-XX:+DebugNonSafepoints"]
:main-opts ["-e" "(require,'puget.printer)"
"-e" "(clojure.main/repl,:init,#(do,(require,'cljstyle.repl),(in-ns,'cljstyle.repl)),:print,puget.printer/cprint)"]}
:check
{:extra-deps {io.github.athos/clj-check {:git/sha "518d5a1cbfcd7c952f548e6dbfcb9a4a5faf9062"}}
:main-opts ["-m" "clj-check.check"]}
:test
{:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}
org.clojure/test.check {:mvn/version "1.1.1"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "kaocha.runner"]}
:coverage
{:extra-paths ["test"]
:extra-deps {cloverage/cloverage {:mvn/version "RELEASE"}}
:main-opts ["-m" "cloverage.coverage"
"--src-ns-path" "src"
"--test-ns-path" "test"
"--ns-exclude-regex" "cljstyle\\.main"]}
:hiera
{:deps {io.github.greglook/clj-hiera {:git/tag "2.0.0", :git/sha "b14e514"}}
:exec-fn hiera.main/graph
:exec-args {:cluster-depth 2
:vertical false}}}}