diff --git a/build.gradle b/build.gradle index 64fab29076..7405f35ff3 100644 --- a/build.gradle +++ b/build.gradle @@ -129,6 +129,7 @@ task ntcoreZip(type: Zip) { description = 'Creates platform-specific zip of the desktop ntcore libraries.' group = 'WPILib' destinationDir = project.buildDir + baseName = 'ntcore' from(file('include')) { into 'include' diff --git a/java/java.gradle b/java/java.gradle index a0b634eca9..28f94041dd 100644 --- a/java/java.gradle +++ b/java/java.gradle @@ -14,6 +14,7 @@ sourceSets { jar { description = 'Generates NetworkTables jar, with the JNI shared libraries embedded' + baseName = 'ntcore' if (buildPlatform == 'arm') { dependsOn { ntcoreSharedLibrary }