From 847b58cec19489addc30f7809773e5c6ad729a6a Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Sat, 11 Oct 2025 11:08:55 +0200 Subject: [PATCH] Update legacy and active libraries in build script 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. --- java/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/build.gradle.kts b/java/build.gradle.kts index d314d44ed..fc7151189 100644 --- a/java/build.gradle.kts +++ b/java/build.gradle.kts @@ -68,7 +68,7 @@ tasks.register("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("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"