From 69a36b83a9541ffd3d95e60b2d7a59babed373d1 Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Sat, 21 Sep 2024 17:08:32 -0700 Subject: [PATCH] Set the group property on the Maven publication (#1445) In attempting to cut release 1.6.7 I found that the artifact upload to Maven Central fails unless this is set. I got the error thrown [here](https://github.com/vanniktech/gradle-maven-publish-plugin/blob/ebe12f08dca6a29eaa08e7050d772e426f55d8cc/nexus/src/main/kotlin/com/vanniktech/maven/publish/nexus/Nexus.kt#L66-L70). So, this property should be set to the name of the staging profile. --- .../src/main/kotlin/com/ibm/wala/gradle/publishing.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build-logic/src/main/kotlin/com/ibm/wala/gradle/publishing.gradle.kts b/build-logic/src/main/kotlin/com/ibm/wala/gradle/publishing.gradle.kts index ae5703ac5..577fb5333 100644 --- a/build-logic/src/main/kotlin/com/ibm/wala/gradle/publishing.gradle.kts +++ b/build-logic/src/main/kotlin/com/ibm/wala/gradle/publishing.gradle.kts @@ -99,6 +99,7 @@ publishing { publications.named("maven") { groupId = "com.ibm.wala" + group = "com.ibm.wala" artifactId = base.archivesName.get() val testFixturesCodeElementsNames =