From f1dde8895e1dc977294400a5039b5a00045c10b7 Mon Sep 17 00:00:00 2001 From: Sam Carlberg Date: Wed, 18 Sep 2024 23:44:01 -0400 Subject: [PATCH] [build] Use project configured groupId in generated output artifact names (#7095) Instead of hardcoding to use the project name after edu_wpi_first, which broke epilogue publishing This did not affect local maven publishing, since it does not use those specially named and configured artifacts --- shared/java/javacommon.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/java/javacommon.gradle b/shared/java/javacommon.gradle index 6151250c59..48e67e8d73 100644 --- a/shared/java/javacommon.gradle +++ b/shared/java/javacommon.gradle @@ -5,7 +5,7 @@ apply plugin: 'com.google.protobuf' def baseArtifactId = project.baseId def artifactGroupId = project.groupId -def javaBaseName = "_GROUP_edu_wpi_first_${project.baseId}_ID_${project.baseId}-java_CLS" +def javaBaseName = "_GROUP_${project.groupId.replace('.', '_')}_ID_${project.baseId}-java_CLS" def outputsFolder = file("$project.buildDir/outputs")