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
@@ -18,39 +18,16 @@
*/
plugins {
id("java")
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
`java-library`
alias(libs.plugins.shadow)
}
tasks.build {
finalizedBy(tasks.shadowJar)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs()
}
resources {
srcDirs()
}
}
}
dependencies {
implementation(project(":SpigotCore"))
implementation(project(":FightSystem:FightSystem_Core"))
implementation(project(":FightSystem:FightSystem_8"))
implementation(project(":FightSystem:FightSystem_9"))
@@ -61,5 +38,4 @@ dependencies {
implementation(project(":FightSystem:FightSystem_18"))
implementation(project(":FightSystem:FightSystem_19"))
implementation(project(":FightSystem:FightSystem_20"))
implementation(project(":SpigotCore"))
}