Gradle Rewrite

This commit is contained in:
Lixfel
2024-08-06 00:26:48 +02:00
parent b210d1265c
commit da3d0a97b5
53 changed files with 513 additions and 1645 deletions
+3 -26
View File
@@ -18,15 +18,7 @@
*/
plugins {
id("java")
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
steamwar.java
}
java {
@@ -34,25 +26,10 @@ java {
targetCompatibility = JavaVersion.VERSION_17
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":BauSystem:BauSystem_Main"))
compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.15")
compileOnly("de.steamwar:worldedit:1.15")
compileOnly(libs.nms15)
compileOnly(libs.worldedit15)
}