-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
44 lines (37 loc) · 2.13 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
{:paths ["src"]
:deps {org.clojure/spec.alpha {:mvn/version "0.5.238"}
spec-dict/spec-dict {:mvn/version "0.2.1"}
com.github.seancorfield/honeysql {:mvn/version "2.6.1161"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}
weavejester/dependency {:mvn/version "0.2.1"}
differ/differ {:mvn/version "0.3.3"}
slingshot/slingshot {:mvn/version "0.12.2"}
com.github.vertical-blank/sql-formatter {:mvn/version "2.0.5"}
resauce/resauce {:mvn/version "0.2.0"}
org.clojure/tools.cli {:mvn/version "1.1.230"}}
:tools/usage {:ns-default automigrate.core}
:aliases
{:dev {:extra-paths ["dev"]
:extra-deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/tools.namespace {:mvn/version "1.5.0"}
hashp/hashp {:mvn/version "0.2.2"}
org.postgresql/postgresql {:mvn/version "42.7.4"}}}
:test {:extra-paths ["test" "test/resources"]
:extra-deps {eftest/eftest {:mvn/version "0.6.0"}
circleci/bond {:mvn/version "0.6.0"}}
:exec-fn automigrate.testing-util/run-eftest
:exec-args {:multithread? false
:test-warn-time 500}}
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.9.1232"}
; suppress logger output
org.slf4j/slf4j-nop {:mvn/version "2.0.16"}}
:main-opts ["-m" "antq.core" "--no-diff"
"--exclude=io.github.seancorfield/build-clj"
"--exclude=net.clojars.abogoyavlensky/automigrate"]}
:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.6.6"
:git/sha "171d5f1"}}
:ns-default build}
:migrations {:ns-default automigrate.core
:exec-args {:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=automigrate"}
; Key `:deps` is here just for testing `-T` option locally, so it is ignored by `-X` option.
:deps {net.clojars.abogoyavlensky/automigrate {:mvn/version "0.0.1-SNAPSHOT"}}}}}