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

@@ -3,8 +3,8 @@ apply plugin: 'maven-publish'
def outputsFolder = file("$buildDir/outputs")
def baseArtifactId = nativeName
def artifactGroupId = "edu.wpi.first.${nativeName}"
def zipBaseName = "_GROUP_edu_wpi_first_${nativeName}_ID_${nativeName}-cpp_CLS"
def artifactGroupId = "org.wpilib.${nativeName}"
def zipBaseName = "_GROUP_org_wpilib_${nativeName}_ID_${nativeName}-cpp_CLS"
def licenseFile = file("$rootDir/license.md")

View File

@@ -9,7 +9,7 @@ apply from: "${rootDir}/shared/config.gradle"
ext {
baseId = nativeName
groupId = "edu.wpi.first.${nativeName}"
groupId = "org.wpilib.${nativeName}"
}
apply from: "${rootDir}/shared/java/javacommon.gradle"

View File

@@ -4,10 +4,10 @@ apply plugin: 'maven-publish'
def outputsFolder = file("$buildDir/outputs")
def baseArtifactId = nativeName
def artifactGroupId = "edu.wpi.first.${nativeName}"
def zipBaseName = "_GROUP_edu_wpi_first_${nativeName}_ID_${nativeName}-cpp_CLS"
def artifactGroupId = "org.wpilib.${nativeName}"
def zipBaseName = "_GROUP_org_wpilib_${nativeName}_ID_${nativeName}-cpp_CLS"
ext.zipBaseName = zipBaseName
def jniCvStaticBaseName = "_GROUP_edu_wpi_first_${nativeName}_ID_${nativeName}-jnicvstatic_CLS"
def jniCvStaticBaseName = "_GROUP_org_wpilib_${nativeName}_ID_${nativeName}-jnicvstatic_CLS"
def licenseFile = file("$rootDir/license.md")

View File

@@ -10,7 +10,7 @@ apply from: "${rootDir}/shared/config.gradle"
ext {
baseId = nativeName
groupId = "edu.wpi.first.${nativeName}"
groupId = "org.wpilib.${nativeName}"
}
apply from: "${rootDir}/shared/java/javacommon.gradle"

View File

@@ -1,8 +1,8 @@
apply plugin: 'maven-publish'
def baseArtifactId = pluginName
def artifactGroupId = 'edu.wpi.first.halsim'
def zipBaseName = "_GROUP_edu_wpi_first_halsim_ID_${pluginName}_CLS"
def artifactGroupId = 'org.wpilib.halsim'
def zipBaseName = "_GROUP_org_wpilib_halsim_ID_${pluginName}_CLS"
def outputsFolder = file("$project.buildDir/outputs")