Rename output JARs in createLibrary tasks (#1278)

The createLibrary tasks in dxf, pdf, and serial modules now rename the output JAR files to dxf.jar, pdf.jar, and serial.jar respectively as Processing does not expect the version name to be in the library jar
This commit is contained in:
Stef Tervelde
2025-10-14 16:35:31 +02:00
committed by GitHub
parent 845cb0c07e
commit 2a5341b52f
3 changed files with 3 additions and 0 deletions

View File

@@ -35,5 +35,6 @@ tasks.register<Copy>("createLibrary"){
from(tasks.jar) {
into("library")
rename { "dxf.jar" }
}
}

View File

@@ -35,5 +35,6 @@ tasks.register<Copy>("createLibrary"){
from(tasks.jar) {
into("library")
rename { "pdf.jar" }
}
}

View File

@@ -32,5 +32,6 @@ tasks.register<Copy>("createLibrary") {
}
from(tasks.jar) {
into("library")
rename { "serial.jar" }
}
}