From 2979963d3f4a39639ebd9ebe6fed38f0b207de2a Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Sat, 13 Sep 2025 15:52:55 +0200 Subject: [PATCH] [orx-module-catalog] Add POM details --- orx-module-catalog/build.gradle.kts | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/orx-module-catalog/build.gradle.kts b/orx-module-catalog/build.gradle.kts index 0254807a..63fe7ed0 100644 --- a/orx-module-catalog/build.gradle.kts +++ b/orx-module-catalog/build.gradle.kts @@ -80,7 +80,37 @@ group = "org.openrndr.extra" publishing { publications { create("maven") { + groupId = "org.openrndr.extra" + artifactId = "orx-module-catalog" + description = "ORX module catalog" from(components["versionCatalog"]) + pom { + name.set(project.name) + description.set(project.name) + url.set("https://openrndr.org") + developers { + developer { + id.set("edwinjakobs") + name.set("Edwin Jakobs") + email.set("edwin@openrndr.org") + } + } + + licenses { + license { + name.set("BSD-2-Clause") + url.set("https://github.com/openrndr/orx/blob/master/LICENSE") + distribution.set("repo") + } + } + + scm { + connection.set("scm:git:git@github.com:openrndr/orx.git") + developerConnection.set("scm:git:ssh://github.com/openrndr/orx.git") + url.set("https://github.com/openrndr/orx") + } + } } + } } \ No newline at end of file