dda-backup/deps.edn

42 lines
1.4 KiB
Clojure
Raw Normal View History

2024-08-16 06:29:49 +00:00
{:project {:name org.domaindrivenarchitecture/dda-backup
2024-08-22 06:34:34 +00:00
:version "5.0.0-SNAPSHOT"}
2024-08-16 06:29:49 +00:00
;; ---------------------------------------------------------
:paths
["src" "resources"]
;; ---------------------------------------------------------
;; ---------------------------------------------------------
:deps
{;; Application
org.clojure/clojure {:mvn/version "1.11.4"}
org.clojure/spec.alpha {:mvn/version "0.5.238"}
orchestra/orchestra {:mvn/version "2021.01.01-1"}}
;; ---------------------------------------------------------
;; ---------------------------------------------------------
:aliases
{
2024-08-30 12:15:47 +00:00
2024-08-16 06:29:49 +00:00
;; Test runner - local and CI
;; call with :watch? true to start file watcher and re-run tests on saved changes
:test/run
{:extra-paths ["test"]
2024-08-30 12:15:47 +00:00
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
expound/expound {:mvn/version "0.9.0"}}
2024-08-16 06:29:49 +00:00
:main-opts ["-m" "kaocha.runner"]
:exec-fn kaocha.runner/exec-fn
:exec-args {:randomize? false
:fail-fast? true}}
;; ------------
;; ------------
;; tools.build `build.clj` built script
:build/task
{:replace-paths ["."]
:replace-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
:extra-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}}}
;; ------------
;; ---------------------------------------------------------