HAND FIXES: Update maven info

This commit is contained in:
PJ Reiniger
2025-11-07 20:00:38 -05:00
committed by Peter Johnson
parent 3f740894c9
commit 013a238994
68 changed files with 120 additions and 120 deletions

View File

@@ -96,7 +96,7 @@ pkg_zip(
maven_export(
name = "wpilibc_publish",
maven_coordinates = "edu.wpi.first.wpilibc:documentation:$(WPILIB_VERSION)",
maven_coordinates = "org.wpilib.wpilibc:documentation:$(WPILIB_VERSION)",
target = ":doxygen-zip",
visibility = ["//visibility:public"],
)
@@ -130,7 +130,7 @@ copy_file(
maven_export(
name = "wpilibj_publish",
maven_coordinates = "edu.wpi.first.wpilibj:documentation:$(WPILIB_VERSION)",
maven_coordinates = "org.wpilib.wpilibj:documentation:$(WPILIB_VERSION)",
target = ":javadoc-zip",
visibility = ["//visibility:public"],
)

View File

@@ -22,12 +22,12 @@ evaluationDependsOn(':romiVendordep')
evaluationDependsOn(':xrpVendordep')
def baseArtifactIdCpp = 'documentation'
def artifactGroupIdCpp = 'edu.wpi.first.wpilibc'
def zipBaseNameCpp = '_GROUP_edu_wpi_first_wpilibc_ID_documentation_CLS'
def artifactGroupIdCpp = 'org.wpilib.wpilibc'
def zipBaseNameCpp = '_GROUP_org_wpilib_wpilibc_ID_documentation_CLS'
def baseArtifactIdJava = 'documentation'
def artifactGroupIdJava = 'edu.wpi.first.wpilibj'
def zipBaseNameJava = '_GROUP_edu_wpi_first_wpilibj_ID_documentation_CLS'
def artifactGroupIdJava = 'org.wpilib.wpilibj'
def zipBaseNameJava = '_GROUP_org_wpilib_wpilibj_ID_documentation_CLS'
def outputsFolder = file("$project.buildDir/outputs")