mirror of
https://github.com/processing/processing4.git
synced 2026-01-25 01:11:06 +01:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user