dda-build/deps.edn

37 lines
1.1 KiB
Clojure
Raw Normal View History

2024-08-16 08:16:41 +02:00
{:project {:name org.domaindrivenarchitecture/dda-build
2024-10-18 11:29:26 +02:00
:version "0.2.1-SNAPSHOT"}
2024-07-26 17:46:51 +02:00
:paths
["src" "resources"]
:deps
2025-01-07 17:51:46 +01:00
{org.clojure/spec.alpha {:mvn/version "0.5.238"}
2024-09-27 15:04:05 +02:00
orchestra/orchestra {:mvn/version "2021.01.01-1"}
2025-01-07 17:51:46 +01:00
aero/aero {:mvn/version "1.1.6"}
2024-09-27 15:04:05 +02:00
org.domaindrivenarchitecture/c4k-common-clj {:mvn/version "8.0.1-SNAPSHOT"}
cheshire/cheshire {:mvn/version "5.13.0"}}
2024-07-26 17:46:51 +02:00
:aliases
2024-08-16 08:16:41 +02:00
{
2024-07-26 17:46:51 +02:00
;; Add libraries and paths to support additional test tools
:test/env
{}
;; 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-14 19:23:00 +02:00
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
2024-07-26 17:46:51 +02: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
{:replace-paths ["."]
:replace-deps {io.github.clojure/tools.build
{:git/tag "v0.10.5" :git/sha "2a21b7a"}}
:extra-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}}}