Update legacy and active libraries in build script (#1265)

Removed 'dxf' and 'serial' from legacyLibraries and added 'serial' to active libraries in build.gradle.kts.
This reflects changes in library maintenance and build configuration.
This commit is contained in:
Stef Tervelde
2025-10-14 05:01:23 +02:00
committed by GitHub
parent 5dc52be4f1
commit ea6783d878

View File

@@ -68,7 +68,7 @@ tasks.register<Copy>("copyCore"){
into(coreProject.layout.projectDirectory.dir("library"))
}
val legacyLibraries = arrayOf("dxf","io","net","serial","svg")
val legacyLibraries = arrayOf("io","net","svg")
legacyLibraries.forEach { library ->
tasks.register<Copy>("library-$library-extraResources"){
val build = project(":java:libraries:$library").tasks.named("build")
@@ -87,7 +87,7 @@ legacyLibraries.forEach { library ->
}
}
val libraries = arrayOf("dxf", "pdf")
val libraries = arrayOf("dxf", "pdf", "serial")
libraries.forEach { library ->
val name = "create-$library-library"