-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeps.edn
25 lines (21 loc) · 1.25 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
com.cognitect.aws/api {:mvn/version "0.8.686"}
com.cognitect.aws/endpoints {:mvn/version "1.1.12.504"}
com.cognitect.aws/sqs {:mvn/version "847.2.1398.0"}
org.clojure/core.async {:mvn/version "1.6.681"}
org.clojure/tools.logging {:mvn/version "1.2.4"}}
:aliases
{:build {:extra-deps {io.github.clojure/tools.build
{:git/url "https://github.com/clojure/tools.build.git"
:sha "cc1e33d003e2e9507e8e6e899611f56172dacc0a"}}
:extra-paths ["builds"]
:ns-default build}
:test {:extra-paths ["test"]
:extra-deps {org.testcontainers/testcontainers {:mvn/version "1.19.1"}
org.slf4j/slf4j-simple {:mvn/version "2.0.9"}}}
:run-tests {:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:git/sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}}}