From ea6783d878cadf42ceb9852e4ffbc1db14d32b02 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Tue, 14 Oct 2025 05:01:23 +0200 Subject: [PATCH] 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. --- 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"