Cleanup SchematicSystem

This commit is contained in:
2026-05-15 12:02:03 +02:00
parent fd266969f5
commit 13185f0e05
41 changed files with 194 additions and 1137 deletions
+13 -7
View File
@@ -19,6 +19,7 @@
plugins {
`java-library`
steamwar.java
alias(libs.plugins.shadow)
}
@@ -26,11 +27,16 @@ tasks.build {
finalizedBy(tasks.shadowJar)
}
dependencies {
implementation(project(":SchematicSystem:SchematicSystem_Core"))
implementation(project(":SchematicSystem:SchematicSystem_8"))
implementation(project(":SchematicSystem:SchematicSystem_15"))
implementation(project(":SchematicSystem:SchematicSystem_19"))
implementation(project(":SchematicSystem:SchematicSystem_20"))
implementation(project(":SchematicSystem:SchematicSystem_21"))
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
dependencies {
compileOnly(libs.classindex)
annotationProcessor(libs.classindex)
compileOnly(project(":SpigotCore", "default"))
compileOnly(libs.paperapi21)
compileOnly(libs.worldedit15)
}