-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
32 lines (28 loc) · 1.27 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
{:paths ["src" "resources"]
:deps
{com.auth0/java-jwt {:mvn/version "4.2.1"}
com.auth0/jwks-rsa {:mvn/version "0.21.2"}
integrant/integrant {:mvn/version "0.8.0"}
com.github.oliyh/martian {:mvn/version "0.1.22"}
com.github.oliyh/martian-clj-http {:mvn/version "0.1.22"}
org.clojure/clojure {:mvn/version "1.11.1"}
ring/ring-codec {:mvn/version "1.2.0"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
clj-time/clj-time {:mvn/version "0.15.2"} ;; NOTE this dep is only required because of swirrl.auth0.mock
}
:mvn/repos
{"swirrl-jars-releases" {:url "s3://swirrl-jars/releases/"}
"swirrl-jars-snapshots" {:url "s3://swirrl-jars/snapshots/"}}
:aliases
{:dev {:extra-paths ["test"]
:jvm-opts ["-Dclojure.main.report=stderr"
"-Dclojure.core.async.go-checking=true"]
:main-opts ["-m" "kaocha.runner"]
:extra-deps {aero/aero {:mvn/version "1.1.6"}
integrant/repl {:mvn/version "0.3.2"}
lambdaisland/kaocha {:mvn/version "1.71.1119"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
environ/environ {:mvn/version "1.2.0"}}}
:doc {:extra-deps {ring/ring {:mvn/version "1.9.6"}}
:extra-paths ["doc"]
:main-opts ["-m server"]}}}