generated from parenthesin/microservice-boilerplate-malli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
35 lines (31 loc) · 1.8 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
com.github.parenthesin/components {:mvn/version "0.4.0-alpha1"
:exclusions [prismatic/schema]}
com.github.seancorfield/honeysql {:mvn/version "2.6.1203"}
metosin/reitit-swagger {:mvn/version "0.7.2"}
org.postgresql/postgresql {:mvn/version "42.7.4"}
com.taoensso/encore {:mvn/version "3.127.0"}
datalevin/datalevin {:mvn/version "0.9.12"}
buddy/buddy-sign {:mvn/version "3.6.1-359"}
metosin/malli {:mvn/version "0.16.4"}}
:aliases
{:dev {:extra-paths ["test" "dev" "test/resources"]
:extra-deps {org.clojars.bigsy/pg-embedded-clj {:mvn/version "1.0.1"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
nubank/matcher-combinators {:mvn/version "3.9.1"}
nubank/state-flow {:mvn/version "5.18.0"}}
; needed for datalevin on jvm > 11
:jvm-opts ["--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]}
:test {:main-opts ["-m" "kaocha.runner"]
:jvm-opts ["-Xms3g" "-Xmx3g"]}
:clojure-lsp {:replace-deps {com.github.clojure-lsp/clojure-lsp-standalone {:mvn/version "2024.08.05-18.16.00"}}
:main-opts ["-m" "clojure-lsp.main"]}
:nrepl {:extra-deps {cider/cider-nrepl {:mvn/version "0.50.2"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:migratus {:main-opts ["-m" "parenthesin.helpers.migrations"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build
:exec-args {:uber-file "target/service.jar"}}}}