-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
62 lines (60 loc) · 3.17 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
aero/aero {:mvn/version "1.1.6"}
aleph/aleph {:mvn/version "0.8.1"}
byte-streams/byte-streams {:mvn/version "0.2.5-alpha2"}
clj-commons/conch {:mvn/version "0.9.2"}
com.fzakaria/slf4j-timbre {:mvn/version "0.4.1"}
com.taoensso/timbre {:mvn/version "6.6.1"}
duct/logger {:mvn/version "0.3.0"}
duct/logger.timbre {:mvn/version "0.5.0"}
integrant/integrant {:mvn/version "0.13.1"}
manifold/manifold {:mvn/version "0.4.3"}
metosin/malli {:mvn/version "0.17.0"}
org.clojure/core.async {:mvn/version "1.6.681"}
org.clojure/math.numeric-tower {:mvn/version "0.1.0"}
org.slf4j/slf4j-api {:mvn/version "2.0.16"}
quil/quil {:mvn/version "4.3.1563"}
tick/tick {:mvn/version "1.0"}
}
:aliases
{:dev {:extra-paths ["dev/src" "dev/resources"]
:extra-deps {integrant/repl {:mvn/version "0.4.0"}
criterium/criterium {:mvn/version "0.4.6"}}}
:nrepl {:extra-deps
{cider/cider-nrepl {:mvn/version "0.50.3"}
refactor-nrepl/refactor-nrepl {:mvn/version "3.10.0"}
org.clojure/tools.deps.alpha {:git/url "https://github.com/clojure/tools.deps.alpha"
:sha "5b8909bdb072d66c9f643bae50cd2878a0f694c2"}
nrepl/nrepl {:mvn/version "1.3.0"}}
:main-opts
["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware refactor-nrepl.middleware/wrap-refactor]"
"-i"]}
:test {:extra-paths ["test/src" "test/resources"]
:extra-deps
{lambdaisland/kaocha {:mvn/version "1.91.1392"}
kaocha-noyoda/kaocha-noyoda {:mvn/version "2019-06-03"}
org.clojure/test.check {:mvn/version "1.1.1"}
com.gfredericks/test.chuck {:mvn/version "0.2.14"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "kaocha.runner"]
:exec-fn kaocha.runner/exec-fn
:exec-args {:randomize? true
:fail-fast? false}}
:outdated {:replace-paths ["."]
:replace-deps
{com.github.liquidz/antq {:mvn/version "RELEASE"}
org.slf4j/slf4j-nop {:mvn/version "2.0.16"}}
:main-opts ["-m" "antq.core"]
:exec-fn antq.tool/outdated
:exec-args {:directory ["."] ; default
:exclude ["org.clojure/tools.deps.alpha"]
:reporter "table" ; json edn format
:verbose false
:upgrade false
:force false}}
:neil {:project {:name mirror-rmk2
:version "0.1"}}
}
}