-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeps.edn
27 lines (24 loc) · 1.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
{:deps
{com.github.rutledgepaulv/injecting-streams {:mvn/version "2.0"}
com.newrelic.agent.java/newrelic-api {:mvn/version "8.0.1"}
ring/ring-core {:mvn/version "1.9.6"}
org.slf4j/slf4j-api {:mvn/version "2.0.6"}}
:paths
["src"]
:aliases
{:build {:extra-deps {io.github.clojure/tools.build
{:git/url "https://github.com/clojure/tools.build.git"
:sha "75817f39b76375886a9014de3c4b5ab28e9456c8"}}
:extra-paths ["builds"]
:ns-default build}
:test {:extra-paths ["test"]
:jvm-opts ["-javaagent:./newrelic/newrelic.jar"]
:extra-deps {ring/ring-jetty-adapter
{:mvn/version "1.9.6"}
org.slf4j/slf4j-simple
{:mvn/version "2.0.6"}
io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}}}