From 9fa39de8b29de9674cb80aa7a7c75788b36f3649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Lipt=C3=A1k?= Date: Wed, 28 Sep 2022 19:49:41 -0400 Subject: [PATCH] Set POM details for publishing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gábor Lipták --- build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2a0e7261f..d1d1b2c1e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -89,6 +89,9 @@ publishing { publications.create("maven") { from(components["java"]) pom { + groupId = project.group as String + artifactId = project.name + version = project.version as String url.set("https://plantuml.com/") licenses { license { @@ -109,7 +112,6 @@ publishing { url.set("https://github.com/plantuml/plantuml") } } - suppressAllPomMetadataWarnings() } repositories { maven {