From dbbe40dc9493b7e9c2a065968a0bf2f3d672ed19 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Thu, 2 Mar 2023 09:59:03 -0800 Subject: [PATCH] print version when building a JAR --- build.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/build.clj b/build.clj index 3b27a23..e35f84b 100644 --- a/build.clj +++ b/build.clj @@ -68,6 +68,7 @@ (defn- jar-opts [opts] (let [version (if (:snapshot opts) snapshot version)] + (println "\nVersion:" version) (assoc opts :lib lib :version version :jar-file (format "target/%s-%s.jar" lib version)