Skip to content

Commit

Permalink
[build] Use project configured groupId in generated output artifact n…
Browse files Browse the repository at this point in the history
…ames (#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
  • Loading branch information
SamCarlberg committed Sep 19, 2024
1 parent 0df82da commit f1dde88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/java/javacommon.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit f1dde88

Please sign in to comment.