-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdeps.edn
26 lines (21 loc) · 1.21 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
{:paths ["resources" "src"]
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/core.async {:mvn/version "1.3.610"}
org.clojure/tools.logging {:mvn/version "1.1.0"}
net.openhft/chronicle-queue {:mvn/version "5.21ea8"}
cc.qbits/commons {:mvn/version "1.0.0-alpha3"}
org.clojure/data.fressian {:mvn/version "1.0.0"}
org.clojure/test.check {:mvn/version "1.0.0"}
net.openhft/chronicle-bytes {:mvn/version "2.21ea12"}}
:aliases
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-305"}
org.slf4j/slf4j-log4j12 {:mvn/version "1.7.25"}}}
:cljfmt {:extra-deps {com.jameslaverack/cljfmt-runner {:git/url "https://github.com/JamesLaverack/cljfmt-runner"
:sha "fc12c2724c44185cd1b221a79c8486c73846f14c"
:exclusions [cljfmt]}
cljfmt {:mvn/version "0.6.1"}}
:main-opts ["-m" "cljfmt-runner.check"]}
:cljfmt/fix {:main-opts ["-m" "cljfmt-runner.fix"]}
:eastwood
{:main-opts ["-m" "eastwood.lint" "{:source-paths,[\"src\"]}"]
:extra-deps {jonase/eastwood {:mvn/version "RELEASE"}}}}}