Skip to content

Commit ea6783d

Browse files
authored
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.
1 parent 5dc52be commit ea6783d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ tasks.register<Copy>("copyCore"){
6868
into(coreProject.layout.projectDirectory.dir("library"))
6969
}
7070

71-
val legacyLibraries = arrayOf("dxf","io","net","serial","svg")
71+
val legacyLibraries = arrayOf("io","net","svg")
7272
legacyLibraries.forEach { library ->
7373
tasks.register<Copy>("library-$library-extraResources"){
7474
val build = project(":java:libraries:$library").tasks.named("build")
@@ -87,7 +87,7 @@ legacyLibraries.forEach { library ->
8787
}
8888
}
8989

90-
val libraries = arrayOf("dxf", "pdf")
90+
val libraries = arrayOf("dxf", "pdf", "serial")
9191

9292
libraries.forEach { library ->
9393
val name = "create-$library-library"

0 commit comments

Comments
 (0)