-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeps.edn
67 lines (67 loc) · 3.28 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
{
:paths ["src" "resources"]
:deps {
aleph/aleph {:mvn/version "0.4.6"}
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.2"}
cheshire/cheshire {:mvn/version "5.10.1"}
cider-ci/open-session {:mvn/version "2.0.0-beta.1"} ; upgrade will break
clj-http/clj-http {:mvn/version "3.12.3"}
clj-pid/clj-pid {:mvn/version "0.1.2"}
clj-yaml/clj-yaml {:mvn/version "0.4.0"}
clojure-humanize/clojure-humanize {:mvn/version "0.2.2"}
com.fzakaria/slf4j-timbre {:mvn/version "0.3.21"}
com.github.mfornos/humanize-slim {:mvn/version "1.2.2"}
com.github.seancorfield/honeysql {:mvn/version "2.4.1066"}
com.mchange/c3p0 {:mvn/version "0.9.5.5"}
com.taoensso/timbre {:mvn/version "5.1.2"}
compojure/compojure {:mvn/version "1.6.2"}
drtom/clj-uuid {:mvn/version "0.1.7"}
environ/environ {:mvn/version "1.2.0"}
honeysql/honeysql {:mvn/version "1.0.461"}
inflections/inflections {:mvn/version "0.13.2"}
json-roa/clj-utils {:mvn/version "1.0.0"}
logbug/logbug {:mvn/version "5.0.0"}
me.raynes/fs {:mvn/version "1.4.6"}
nrepl/nrepl {:mvn/version "0.8.3"}
org.apache.commons/commons-lang3 {:mvn/version "3.12.0"}
org.clojars.hozumi/clj-commons-exec {:mvn/version "1.2.0"}
org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/core.match {:mvn/version "1.0.0"}
org.clojure/data.codec {:mvn/version "0.1.1"}
org.clojure/java.jdbc {:mvn/version "0.7.12"}
org.clojure/tools.cli {:mvn/version "1.0.206"}
org.clojure/tools.logging {:mvn/version "1.2.1"}
org.yaml/snakeyaml {:mvn/version "1.29"}
pg-types/pg-types {:mvn/version "3.0.0"}
ring-basic-authentication/ring-basic-authentication {:mvn/version "1.1.1"}
ring-cors/ring-cors {:mvn/version "0.1.13"}
ring/ring-core {:mvn/version "1.9.4"}
ring/ring-json {:mvn/version "0.5.1"}
spootnik/signal {:mvn/version "0.2.4"}
uritemplate-clj/uritemplate-clj {:mvn/version "1.3.0"}
}
:aliases
{;
:cljfmt {:extra-deps {io.github.weavejester/cljfmt
{:git/tag "0.11.2"
:sha "fb26b22f569724b05c93eb2502592dfc2de898c3"
}}
:main-opts ["-m" "cljfmt.main"]}
:depstar {:extra-deps {seancorfield/depstar {:mvn/version "2.0.216"}}}
:graph {:extra-deps
{org.clojure/tools.deps.graph
{;:local/root "/Users/thomas/Programming/CLOJURE/tools.deps.graph"
:git/url "https://github.com/DrTom/tools.deps.graph.git"
:sha "809d5981b6c6ec7267328b74f8dd61630df01daf" }}
:main-opts ["-m" "clojure.tools.deps.graph"]}
:nREPL {:extra-deps {nrepl/nrepl {:mvn/version "0.8.3"}}}
:outdated {:extra-deps {olical/depot {:mvn/version "2.3.0"}}
:main-opts ["-m" "depot.outdated.main"]}
:resources {:extra-paths ["resources"]}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "dd6da11611eeb87f08780a30ac8ea6012d4c05ce"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test
}}}