From c250e1f83ede80cb0da53a286d7049076600a132 Mon Sep 17 00:00:00 2001 From: Tatu Tarvainen Date: Fri, 8 Mar 2024 17:16:59 +0200 Subject: [PATCH] Add license info to pom --- build.clj | 6 +++++- deps.edn | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build.clj b/build.clj index 1e29d71..507a774 100644 --- a/build.clj +++ b/build.clj @@ -29,7 +29,11 @@ :src-dirs ["src"] :scm {:url "https://github.com/tatut/ripley" :connection "scm:git:git://github.com/tatut/ripley.git" - :tag (commit-sha)}}) + :tag (commit-sha)} + :pom-data [[:licenses + [:license + [:name "MIT License"] + [:url "https://opensource.org/license/mit"]]]]}) (b/copy-dir {:src-dirs ["src" "resources"] :target-dir class-dir}) (b/jar {:class-dir class-dir diff --git a/deps.edn b/deps.edn index 016107a..2cb9d22 100644 --- a/deps.edn +++ b/deps.edn @@ -27,7 +27,7 @@ :xtdb {:extra-deps {com.xtdb/xtdb-core {:mvn/version "1.24.1"}}} ;; Run with clj -T:build function-in-build - :build {:deps {io.github.clojure/tools.build {:git/tag "v0.9.5" :git/sha "24f2894"}} + :build {:deps {io.github.clojure/tools.build {:git/tag "v0.9.6" :git/sha "8e78bcc"}} :ns-default build} ;; Deploy to clojars