From 69e154ea870afef978b0abe4138486ac96f2a2a0 Mon Sep 17 00:00:00 2001 From: Sebastian Crane Date: Fri, 8 Apr 2022 20:53:20 +0100 Subject: [PATCH] Add :build alias with relevant dependencies This commit creates a new alias :build in deps.edn, adding the tools.build and tools-pom libraries as dependencies. These are needed for generating proper JAR and POM files with a Clojure build system. Signed-off-by: Sebastian Crane --- deps.edn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index ba54d9c..c3d279e 100644 --- a/deps.edn +++ b/deps.edn @@ -7,4 +7,6 @@ irclj/irclj {:mvn/version "0.5.0-alpha4"}} :aliases {:test {:extra-paths ["test"] :extra-deps {lambdaisland/kaocha {:mvn/version "1.60.972"}} - :main-opts ["-m" "kaocha.runner"]}}} + :main-opts ["-m" "kaocha.runner"]} + :build {:deps {io.github.clojure/tools.build {:git/tag "v0.8.1" :git/sha "7d40500"} + com.github.pmonks/tools-pom {:mvn/version "1.0.74"}}}}}