-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
44 lines (40 loc) · 2.48 KB
/
deps.edn
File metadata and controls
44 lines (40 loc) · 2.48 KB
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
{:paths ["src/clj" "resources"]
:deps {ring/ring-core {:mvn/version "1.15.3"}
ring/ring-jetty-adapter {:mvn/version "1.15.3"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.1093"}
org.postgresql/postgresql {:mvn/version "42.7.9"}
integrant/integrant {:mvn/version "1.0.1"}
org.slf4j/slf4j-reload4j {:mvn/version "2.0.17"}
org.clojure/tools.logging {:mvn/version "1.3.1"}
migratus/migratus {:mvn/version "1.6.5"}
com.github.seancorfield/honeysql {:mvn/version "2.7.1368"}
metosin/reitit {:mvn/version "0.10.0"}
metosin/muuntaja {:mvn/version "0.6.11"}
hiccup/hiccup {:mvn/version "2.0.0"}
ring-logger/ring-logger {:mvn/version "1.1.1"}
ring/ring-anti-forgery {:mvn/version "1.4.0"}
buddy/buddy-hashers {:mvn/version "2.0.167"}
clojure.java-time/clojure.java-time {:mvn/version "1.4.3"}
com.github.seancorfield/expectations {:mvn/version "2.2.214"}
io.github.Xylon2/ring-redis-session {:git/tag "v4.0.2"
:git/sha "6b2221d"}}
:aliases {:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.12" :git/sha "97c5562"}}
:ns-default build}
:dev {:extra-paths ["env/dev" "env/dev/resources" "test/clj"]
:extra-deps {integrant/repl {:mvn/version "0.5.0"}}}
:test {:extra-paths ["test/clj" "env/test/resources"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}
;; we don't actually use repl in this namespace,
;; but the test-utils namespace needs it to
;; at-least be there
integrant/repl {:mvn/version "0.5.0"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
;; devtest namespace is for testing in repl. what is the difference
;; between running tests in :dev or :devtest?
;; 1. they use a different database
;; 2. :dev rolls back for tests but not when running queries from
;; user ns. :devtest rolls back either way
:devtest {:extra-paths ["test/clj" "env/test" "env/test/resources"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}
integrant/repl {:mvn/version "0.5.0"}}}}}