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 { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
java { java {
@@ -34,25 +26,10 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":BauSystem:BauSystem_Main")) compileOnly(project(":BauSystem:BauSystem_Main"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.15") compileOnly(libs.nms15)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
} }
+3 -33
View File
@@ -18,15 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
java { java {
@@ -34,32 +26,10 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":BauSystem:BauSystem_Main")) compileOnly(project(":BauSystem:BauSystem_Main"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.18") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.nms18)
compileOnly("org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT")
compileOnly("it.unimi.dsi:fastutil:8.5.6")
compileOnly("com.mojang:datafixerupper:4.0.26")
compileOnly("io.netty:netty-all:4.1.68.Final")
compileOnly("com.mojang:authlib:1.5.25")
compileOnly("com.mojang:brigadier:1.0.18")
} }
+4 -33
View File
@@ -18,15 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
java { java {
@@ -34,33 +26,12 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":BauSystem:BauSystem_Main")) compileOnly(project(":BauSystem:BauSystem_Main"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.19") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.paperapi)
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.nms19)
compileOnly("io.papermc.paper:paper-api:1.19.2-R0.1-SNAPSHOT")
compileOnly("it.unimi.dsi:fastutil:8.5.6")
compileOnly("com.mojang:datafixerupper:4.0.26")
compileOnly("io.netty:netty-all:4.1.68.Final")
compileOnly("com.mojang:authlib:1.5.25")
compileOnly("com.mojang:brigadier:1.0.18")
} }
+3 -31
View File
@@ -18,15 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
java { java {
@@ -34,31 +26,11 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":BauSystem:BauSystem_Main")) compileOnly(project(":BauSystem:BauSystem_Main"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.20") compileOnly(libs.spigotapi)
compileOnly("org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT") compileOnly(libs.nms20)
compileOnly("it.unimi.dsi:fastutil:8.5.6")
compileOnly("com.mojang:datafixerupper:4.0.26")
compileOnly("io.netty:netty-all:4.1.68.Final")
compileOnly("com.mojang:authlib:1.5.25")
compileOnly("com.mojang:brigadier:1.0.18")
} }
+1 -24
View File
@@ -18,15 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
java { java {
@@ -34,21 +26,6 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
} }
+12 -32
View File
@@ -18,15 +18,10 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
} }
group = "de.steamwar"
version = ""
tasks.compileJava { tasks.compileJava {
options.encoding = "UTF-8"
options.isWarnings = false options.isWarnings = false
options.compilerArgs.add("-AprojectDir=$projectDir") options.compilerArgs.add("-AprojectDir=$projectDir")
} }
@@ -36,34 +31,19 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/", "build/generated/sources/annotationProcessor/java/main/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") annotationProcessor(project(":BauSystem:BauSystem_Linkage"))
annotationProcessor("org.projectlombok:lombok:1.18.32") annotationProcessor(project(":SpigotCore"))
compileOnly(project(":SpigotCore"))
compileOnly(libs.spigotapi)
compileOnly(libs.axiom)
compileOnly(libs.authlib)
compileOnly(libs.nms20)
compileOnly(libs.fawe18)
implementation(project(":BauSystem:BauSystem_Linkage")) implementation(project(":BauSystem:BauSystem_Linkage"))
annotationProcessor(project(":BauSystem:BauSystem_Linkage")) implementation(libs.luaj)
compileOnly(project(":SpigotCore"))
annotationProcessor(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.20")
compileOnly("de.steamwar:fastasyncworldedit:1.18")
compileOnly("de.steamwar:axiompaper:RELEASE")
implementation("org.luaj:luaj-jse:3.0.1")
implementation(files("$projectDir/../libs/YAPION-SNAPSHOT.jar")) implementation(files("$projectDir/../libs/YAPION-SNAPSHOT.jar"))
compileOnly("org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT")
compileOnly("com.mojang:authlib:1.5.25")
compileOnly("io.netty:netty-all:4.1.68.Final")
} }
+2 -19
View File
@@ -18,32 +18,15 @@
*/ */
plugins { plugins {
id("base") `java-library`
id("java-library") alias(libs.plugins.shadow)
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
tasks.build { tasks.build {
finalizedBy(tasks.shadowJar) finalizedBy(tasks.shadowJar)
} }
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
implementation(project(":BauSystem:BauSystem_Main")) implementation(project(":BauSystem:BauSystem_Main"))
implementation(project(":BauSystem:BauSystem_15")) implementation(project(":BauSystem:BauSystem_15"))
implementation(project(":BauSystem:BauSystem_18")) implementation(project(":BauSystem:BauSystem_18"))
+3 -42
View File
@@ -18,49 +18,10 @@
*/ */
plugins { plugins {
id("base") steamwar.java
id("java")
}
group = "de.steamwar"
version = ""
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding = "UTF-8"
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
test {
java {
srcDirs("testsrc/")
}
resources {
srcDirs("testsrc/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") testImplementation(libs.junit)
annotationProcessor("org.projectlombok:lombok:1.18.32") testImplementation(libs.hamcrest)
testCompileOnly("org.projectlombok:lombok:1.18.32")
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
testImplementation("junit:junit:4.13.2")
testImplementation("org.hamcrest:hamcrest:2.2")
} }
+21 -33
View File
@@ -1,20 +1,27 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins { plugins {
id("java") steamwar.java
} }
group = "de.steamwar" tasks.register("buildResources") {
version = ""
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.create("buildResources") {
doLast { doLast {
val to = File("$projectDir/build/classes/java/main/META-INF/services/javax.annotation.processing.Processor") val to = File("$projectDir/build/classes/java/main/META-INF/services/javax.annotation.processing.Processor")
to.parentFile.mkdirs() to.parentFile.mkdirs()
@@ -27,23 +34,4 @@ tasks.create("buildResources") {
tasks.classes { tasks.classes {
finalizedBy("buildResources") finalizedBy("buildResources")
}
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")
testCompileOnly("org.projectlombok:lombok:1.18.32")
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
} }
+22 -41
View File
@@ -1,46 +1,27 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins { plugins {
id("java") steamwar.java
}
group = "de.steamwar"
version = ""
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding = "UTF-8"
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
test {
java {
srcDirs("testsrc/")
}
resources {
srcDirs("testsrc/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") testImplementation(libs.junit)
annotationProcessor("org.projectlombok:lombok:1.18.32") testImplementation(libs.hamcrest)
testCompileOnly("org.projectlombok:lombok:1.18.32")
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
testImplementation("junit:junit:4.13.2")
testImplementation("org.hamcrest:hamcrest:2.2")
} }
+21 -29
View File
@@ -1,34 +1,26 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins { plugins {
id("java") steamwar.java
}
group = "de.steamwar"
version = ""
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding = "UTF-8"
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(libs.sqlite)
annotationProcessor("org.projectlombok:lombok:1.18.32")
testCompileOnly("org.projectlombok:lombok:1.18.32")
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
} }
+1 -24
View File
@@ -18,33 +18,10 @@
*/ */
plugins { plugins {
id("base") steamwar.java
id("java-library")
}
group = "de.steamwar"
version = ""
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding = "UTF-8"
}
sourceSets {
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
testCompileOnly("org.projectlombok:lombok:1.18.32")
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly("org.xerial:sqlite-jdbc:3.46.0.0")
api(project(":CommonCore:SQL")) api(project(":CommonCore:SQL"))
api(project(":CommonCore:Linkage")) api(project(":CommonCore:Linkage"))
api(project(":CommonCore:Network")) api(project(":CommonCore:Network"))
+3 -32
View File
@@ -18,41 +18,12 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly("de.steamwar:spigot:1.10") compileOnly(libs.nms10)
compileOnly("de.steamwar:worldedit:1.12")
} }
+4 -32
View File
@@ -18,42 +18,14 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(project(":SpigotCore"))
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core")) compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":FightSystem:FightSystem_8")) compileOnly(project(":FightSystem:FightSystem_8"))
compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.12") compileOnly(libs.nms12)
compileOnly("de.steamwar:worldedit:1.12") compileOnly(libs.worldedit12)
} }
+5 -33
View File
@@ -18,45 +18,17 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(project(":SpigotCore"))
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core")) compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":FightSystem:FightSystem_8")) compileOnly(project(":FightSystem:FightSystem_8"))
compileOnly(project(":FightSystem:FightSystem_9")) compileOnly(project(":FightSystem:FightSystem_9"))
compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.14") compileOnly(libs.nms14)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
compileOnly("it.unimi.dsi:fastutil:8.5.6") compileOnly(libs.fastutil)
} }
+4 -32
View File
@@ -18,41 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly("de.steamwar:spigot:1.15") compileOnly(libs.nms15)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
} }
+7 -37
View File
@@ -18,47 +18,17 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly("de.steamwar:fastasyncworldedit:1.18") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:spigot:1.18")
compileOnly("org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT") compileOnly(libs.nms18)
compileOnly("com.mojang:datafixerupper:4.0.26") compileOnly(libs.fawe18)
compileOnly("io.netty:netty-all:4.1.68.Final")
compileOnly("com.mojang:authlib:1.5.25") compileOnly(libs.fastutil)
compileOnly("it.unimi.dsi:fastutil:8.5.6")
} }
+3 -36
View File
@@ -18,47 +18,14 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core")) compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":FightSystem:FightSystem_18")) compileOnly(project(":FightSystem:FightSystem_18"))
compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:spigot:1.19")
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.nms19)
compileOnly("com.mojang:brigadier:1.0.18")
compileOnly("com.mojang:datafixerupper:4.0.26")
compileOnly("com.mojang:authlib:1.5.25")
} }
+5 -32
View File
@@ -18,43 +18,16 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core")) compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":FightSystem:FightSystem_18")) compileOnly(project(":FightSystem:FightSystem_18"))
compileOnly("de.steamwar:spigot:1.20") compileOnly(libs.spigotapi)
compileOnly("org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT") compileOnly(libs.nms20)
compileOnly("it.unimi.dsi:fastutil:8.5.6")
compileOnly(libs.fastutil)
} }
+4 -32
View File
@@ -18,41 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly("de.steamwar:spigot:1.8") compileOnly(libs.nms8)
compileOnly("de.steamwar:worldedit:1.12") compileOnly(libs.worldedit12)
} }
+3 -32
View File
@@ -18,42 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(project(":SpigotCore"))
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":FightSystem:FightSystem_Core")) compileOnly(project(":FightSystem:FightSystem_Core"))
compileOnly(project(":FightSystem:FightSystem_8")) compileOnly(project(":FightSystem:FightSystem_8"))
compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.9") compileOnly(libs.nms9)
compileOnly("de.steamwar:worldedit:1.12")
} }
+5 -34
View File
@@ -18,44 +18,15 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.spigotapi)
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.worldedit15)
compileOnly("it.unimi.dsi:fastutil:8.5.6") compileOnly(libs.fastutil)
compileOnly("io.netty:netty-all:4.1.68.Final") compileOnly(libs.authlib)
compileOnly("com.mojang:authlib:1.5.25")
} }
@@ -18,39 +18,16 @@
*/ */
plugins { plugins {
id("java") `java-library`
id("base") alias(libs.plugins.shadow)
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
tasks.build { tasks.build {
finalizedBy(tasks.shadowJar) finalizedBy(tasks.shadowJar)
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs()
}
resources {
srcDirs()
}
}
}
dependencies { dependencies {
implementation(project(":SpigotCore"))
implementation(project(":FightSystem:FightSystem_Core")) implementation(project(":FightSystem:FightSystem_Core"))
implementation(project(":FightSystem:FightSystem_8")) implementation(project(":FightSystem:FightSystem_8"))
implementation(project(":FightSystem:FightSystem_9")) implementation(project(":FightSystem:FightSystem_9"))
@@ -61,5 +38,4 @@ dependencies {
implementation(project(":FightSystem:FightSystem_18")) implementation(project(":FightSystem:FightSystem_18"))
implementation(project(":FightSystem:FightSystem_19")) implementation(project(":FightSystem:FightSystem_19"))
implementation(project(":FightSystem:FightSystem_20")) implementation(project(":FightSystem:FightSystem_20"))
implementation(project(":SpigotCore"))
} }
+2 -19
View File
@@ -18,32 +18,15 @@
*/ */
plugins { plugins {
id("base") `java-library`
id("java") alias(libs.plugins.shadow)
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
tasks.build { tasks.build {
finalizedBy(tasks.shadowJar) finalizedBy(tasks.shadowJar)
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
implementation(project(":FightSystem:FightSystem_Core")) implementation(project(":FightSystem:FightSystem_Core"))
implementation(project(":FightSystem:FightSystem_8")) implementation(project(":FightSystem:FightSystem_8"))
implementation(project(":FightSystem:FightSystem_9")) implementation(project(":FightSystem:FightSystem_9"))
+4 -33
View File
@@ -18,21 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.build {
finalizedBy(tasks.shadowJar)
} }
java { java {
@@ -40,26 +26,11 @@ java {
targetCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.20") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:worldedit:1.15")
compileOnly("org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT") compileOnly(libs.nms20)
compileOnly(libs.worldedit15)
} }
+4 -33
View File
@@ -18,21 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.build {
finalizedBy(tasks.shadowJar)
} }
java { java {
@@ -40,26 +26,11 @@ java {
targetCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.20") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:fastasyncworldedit:1.18")
compileOnly("org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT") compileOnly(libs.nms20)
compileOnly(libs.fawe18)
} }
+2 -36
View File
@@ -18,43 +18,9 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.build {
finalizedBy(tasks.shadowJar)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(libs.spigotapi)
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT")
} }
@@ -18,41 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SchematicSystem:SchematicSystem_Core"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly(project(":SchematicSystem:SchematicSystem_Core"))
compileOnly("de.steamwar:spigot:1.15") compileOnly(libs.nms15)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
} }
@@ -18,41 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SchematicSystem:SchematicSystem_Core"))
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly(project(":SchematicSystem:SchematicSystem_Core"))
compileOnly("de.steamwar:spigot:1.8") compileOnly(libs.nms8)
compileOnly("de.steamwar:worldedit:1.12") compileOnly(libs.worldedit12)
} }
@@ -18,40 +18,12 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.15") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
} }
+2 -19
View File
@@ -18,32 +18,15 @@
*/ */
plugins { plugins {
id("java") `java-library`
id("base") alias(libs.plugins.shadow)
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
tasks.build { tasks.build {
finalizedBy(tasks.shadowJar) finalizedBy(tasks.shadowJar)
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
implementation(project(":SchematicSystem:SchematicSystem_Core")) implementation(project(":SchematicSystem:SchematicSystem_Core"))
implementation(project(":SchematicSystem:SchematicSystem_8")) implementation(project(":SchematicSystem:SchematicSystem_8"))
implementation(project(":SchematicSystem:SchematicSystem_15")) implementation(project(":SchematicSystem:SchematicSystem_15"))
+1 -24
View File
@@ -18,28 +18,5 @@
*/ */
plugins { plugins {
id("java") steamwar.java
}
group = "de.steamwar"
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
+2 -30
View File
@@ -18,39 +18,11 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly("de.steamwar:spigot:1.10") compileOnly(libs.nms10)
} }
+3 -31
View File
@@ -18,40 +18,12 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly(project(":CommonCore")) compileOnly(project(":CommonCore"))
compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly("de.steamwar:spigot:1.12") compileOnly(libs.nms12)
} }
+4 -32
View File
@@ -18,43 +18,15 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(project(":CommonCore"))
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly(project(":SpigotCore:SpigotCore_8")) compileOnly(project(":SpigotCore:SpigotCore_8"))
compileOnly(project(":SpigotCore:SpigotCore_9")) compileOnly(project(":SpigotCore:SpigotCore_9"))
compileOnly(project(":CommonCore"))
compileOnly("de.steamwar:spigot:1.14") compileOnly(libs.nms14)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
} }
+2 -30
View File
@@ -18,39 +18,11 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly("de.steamwar:spigot:1.15") compileOnly(libs.nms15)
} }
+8 -33
View File
@@ -18,48 +18,23 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
} }
group = "de.steamwar"
version = ""
tasks.compileJava { tasks.compileJava {
options.encoding = "UTF-8"
options.isWarnings = false options.isWarnings = false
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(project(":CommonCore"))
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly(project(":SpigotCore:SpigotCore_14")) compileOnly(project(":SpigotCore:SpigotCore_14"))
compileOnly(project(":CommonCore"))
compileOnly("de.steamwar:fastasyncworldedit:1.18") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:spigot:1.18") compileOnly(libs.nms18)
compileOnly(libs.fawe18)
compileOnly("org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT") compileOnly(libs.datafixer)
compileOnly("com.mojang:datafixerupper:4.0.26") compileOnly(libs.netty)
compileOnly("io.netty:netty-all:4.1.68.Final") compileOnly(libs.authlib)
compileOnly("com.mojang:authlib:1.5.25")
} }
+7 -35
View File
@@ -18,47 +18,19 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly(project(":SpigotCore:SpigotCore_14")) compileOnly(project(":SpigotCore:SpigotCore_14"))
compileOnly(project(":SpigotCore:SpigotCore_18")) compileOnly(project(":SpigotCore:SpigotCore_18"))
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
compileOnly("de.steamwar:spigot:1.19") compileOnly(libs.nms19)
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.spigotapi)
compileOnly("com.mojang:brigadier:1.0.18") compileOnly(libs.brigadier)
compileOnly("com.mojang:datafixerupper:4.0.26") compileOnly(libs.datafixer)
compileOnly("com.mojang:authlib:1.5.25") compileOnly(libs.authlib)
} }
+3 -31
View File
@@ -18,41 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly("de.steamwar:spigot:1.20") compileOnly(libs.spigotapi)
compileOnly("org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT") compileOnly(libs.nms20)
} }
+4 -32
View File
@@ -18,41 +18,13 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly(project(":CommonCore")) compileOnly(project(":CommonCore"))
compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly("de.steamwar:spigot:1.8") compileOnly(libs.nms8)
compileOnly("de.steamwar:worldedit:1.12") compileOnly(libs.worldedit12)
} }
+3 -31
View File
@@ -18,42 +18,14 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore:SpigotCore_Main")) compileOnly(project(":SpigotCore:SpigotCore_Main"))
compileOnly(project(":SpigotCore:SpigotCore_8")) compileOnly(project(":SpigotCore:SpigotCore_8"))
compileOnly("de.steamwar:spigot:1.9") compileOnly(libs.nms9)
compileOnly("com.viaversion:viaversion-api:4.3.1") compileOnly(libs.viaapi)
} }
+9 -39
View File
@@ -18,55 +18,25 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
} }
group = "de.steamwar"
version = ""
tasks.compileJava { tasks.compileJava {
options.encoding = "UTF-8"
options.isWarnings = false options.isWarnings = false
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":CommonCore")) compileOnly(project(":CommonCore"))
compileOnly(project(":CommandFramework")) compileOnly(project(":CommandFramework"))
compileOnly(project(":SpigotCore:CRIUDummy"))
compileOnly("de.steamwar:worldedit:1.12") compileOnly(libs.worldedit12)
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.spigotapi)
compileOnly("io.netty:netty-all:4.1.68.Final") compileOnly(libs.netty)
compileOnly("com.mojang:authlib:1.5.25") compileOnly(libs.authlib)
compileOnly("mysql:mysql-connector-java:5.1.49") compileOnly(libs.viaapi)
compileOnly("com.viaversion:viaversion-api:4.3.1") compileOnly(libs.fastutil)
compileOnly("it.unimi.dsi:fastutil:8.5.6")
implementation("net.wesjd:anvilgui:1.7.0-SNAPSHOT")
try { implementation(libs.anvilgui)
Class.forName("org.eclipse.openj9.criu.CRIUSupport")
} catch (e: ClassNotFoundException) {
compileOnly(project(":SpigotCore:CRIUDummy"))
}
} }
+13 -33
View File
@@ -18,46 +18,26 @@
*/ */
plugins { plugins {
id("base") `java-library`
id("java-library") alias(libs.plugins.shadow)
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
} }
tasks.build { tasks.build {
finalizedBy(tasks.shadowJar) finalizedBy(tasks.shadowJar)
} }
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
api(project(":SpigotCore:SpigotCore_Main"))
api(project(":SpigotCore:SpigotCore_8"))
api(project(":SpigotCore:SpigotCore_9"))
api(project(":SpigotCore:SpigotCore_10"))
api(project(":SpigotCore:SpigotCore_12"))
api(project(":SpigotCore:SpigotCore_14"))
api(project(":SpigotCore:SpigotCore_15"))
api(project(":SpigotCore:SpigotCore_18"))
api(project(":SpigotCore:SpigotCore_19"))
api(project(":SpigotCore:SpigotCore_20"))
api(project(":CommonCore")) api(project(":CommonCore"))
api(project(":CommandFramework")) api(project(":CommandFramework"))
api(project(":SpigotCore:SpigotCore_Main"))
implementation(project(":SpigotCore:SpigotCore_8"))
implementation(project(":SpigotCore:SpigotCore_9"))
implementation(project(":SpigotCore:SpigotCore_10"))
implementation(project(":SpigotCore:SpigotCore_12"))
implementation(project(":SpigotCore:SpigotCore_14"))
implementation(project(":SpigotCore:SpigotCore_15"))
implementation(project(":SpigotCore:SpigotCore_18"))
implementation(project(":SpigotCore:SpigotCore_19"))
implementation(project(":SpigotCore:SpigotCore_20"))
} }
+4 -38
View File
@@ -18,48 +18,14 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.build {
finalizedBy(tasks.shadowJar)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.spigotapi)
compileOnly("de.steamwar:axiompaper:RELEASE")
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.worldedit15)
compileOnly(libs.axiom)
} }
+6 -34
View File
@@ -18,21 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.build {
finalizedBy(tasks.shadowJar)
} }
java { java {
@@ -40,28 +26,14 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") annotationProcessor(libs.spigotannotations)
annotationProcessor("org.projectlombok:lombok:1.18.32") compileOnly(libs.spigotannotations)
compileOnly("org.spigotmc:plugin-annotations:1.2.3-SNAPSHOT")
annotationProcessor("org.spigotmc:plugin-annotations:1.2.3-SNAPSHOT")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.19") compileOnly(libs.nms19)
compileOnly("de.steamwar:worldedit:1.15") compileOnly(libs.worldedit15)
compileOnly("org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT") compileOnly(libs.spigotapi)
} }
+2 -36
View File
@@ -18,45 +18,11 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("base")
id("com.github.johnrengelman.shadow")
}
group = "de.steamwar"
version = ""
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.build {
finalizedBy(tasks.shadowJar)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
} }
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
compileOnly(project(":SpigotCore")) compileOnly(project(":SpigotCore"))
compileOnly("de.steamwar:spigot:1.15") compileOnly(libs.nms15)
} }
+3 -24
View File
@@ -18,13 +18,7 @@
*/ */
plugins { plugins {
id("java") steamwar.java
}
group = "de.steamwar"
tasks.compileJava {
options.encoding = "UTF-8"
} }
java { java {
@@ -32,22 +26,7 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") compileOnly(libs.velocity)
annotationProcessor("org.projectlombok:lombok:1.18.32") annotationProcessor(libs.velocityapi)
compileOnly("de.steamwar:velocity:RELEASE")
annotationProcessor("com.velocitypowered:velocity-api:3.3.0-SNAPSHOT")
} }
+11 -32
View File
@@ -18,12 +18,10 @@
*/ */
plugins { plugins {
id("java") steamwar.java
id("com.github.johnrengelman.shadow") alias(libs.plugins.shadow)
} }
group = "de.steamwar"
tasks.shadowJar { tasks.shadowJar {
exclude("META-INF/*") exclude("META-INF/*")
exclude("org/sqlite/native/FreeBSD/**', 'org/sqlite/native/Mac/**', 'org/sqlite/native/Windows/**', 'org/sqlite/native/Linux-Android/**', 'org/sqlite/native/Linux-Musl/**") exclude("org/sqlite/native/FreeBSD/**', 'org/sqlite/native/Mac/**', 'org/sqlite/native/Windows/**', 'org/sqlite/native/Linux-Android/**', 'org/sqlite/native/Linux-Musl/**")
@@ -41,48 +39,29 @@ tasks.build {
finalizedBy(tasks.shadowJar) finalizedBy(tasks.shadowJar)
} }
tasks.compileJava {
options.encoding = "UTF-8"
}
java { java {
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies { dependencies {
compileOnly("org.projectlombok:lombok:1.18.32") annotationProcessor(libs.velocityapi)
annotationProcessor("org.projectlombok:lombok:1.18.32") compileOnly(libs.velocity)
annotationProcessor("com.velocitypowered:velocity-api:3.3.0-SNAPSHOT") compileOnly(project(":VelocityCore:Persistent"))
compileOnly("de.steamwar:velocity:RELEASE")
implementation(project(":CommonCore")) implementation(project(":CommonCore"))
implementation(project(":CommandFramework")) implementation(project(":CommandFramework"))
compileOnly(project(":VelocityCore:Persistent")) implementation(libs.sqlite)
implementation(libs.mysql)
implementation("org.xerial:sqlite-jdbc:3.46.0.0") implementation(libs.jda) {
implementation("mysql:mysql-connector-java:8.0.33")
implementation("net.dv8tion:JDA:4.4.0_352") {
exclude(module = "opus-java") exclude(module = "opus-java")
} }
implementation("org.msgpack:msgpack-core:0.9.8") implementation(libs.msgpack)
implementation("com.lunarclient:apollo-api:1.1.0") implementation(libs.apolloapi)
implementation("com.lunarclient:apollo-common:1.1.0") implementation(libs.apollocommon)
} }
+3 -89
View File
@@ -17,97 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import org.codehaus.plexus.util.Os
import java.net.URI
import java.util.Properties
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins { plugins {
id("base") base
id("application")
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
} }
group = "de.steamwar"
version = ""
private val isInCi by lazy { Os.isFamily(Os.FAMILY_UNIX) && ProcessBuilder("hostname").start().inputStream.bufferedReader().readText().startsWith("steamwar.de") }
allprojects { allprojects {
repositories { group = "de.steamwar"
mavenCentral() version = ""
maven {
url = URI("https://m2.dv8tion.net/releases")
content {
includeGroup("net.dv8tion")
}
}
maven {
url = URI("https://repo.lunarclient.dev")
content {
includeGroup("com.lunarclient")
}
}
if (isInCi) {
maven {
url = URI("file:///var/www/html/maven/")
}
} else {
maven {
url = URI("https://steamwar.de/maven/")
credentials {
val swProps = Properties()
swProps.load(rootProject.file("steamwar.properties").inputStream())
username = swProps.getProperty("maven.username")
password = swProps.getProperty("maven.password")
}
}
}
maven {
url = URI("https://repo.codemc.io/repository/maven-snapshots/")
}
maven {
url = URI("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
}
maven {
url = URI("https://libraries.minecraft.net")
}
maven {
url = URI("https://repo.viaversion.com")
}
maven {
url = URI("https://repo.papermc.io/repository/maven-public/")
}
}
}
sourceSets {
} }
+30
View File
@@ -0,0 +1,30 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins {
id 'groovy-gradle-plugin'
}
sourceSets {
main {
groovy {
srcDirs("src/")
}
}
}
+59
View File
@@ -0,0 +1,59 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins {
id 'java-library'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding "UTF-8"
}
sourceSets {
main {
java {
srcDirs("src/", "build/generated/sources/annotationProcessor/java/main/") //TODO remove generated when LinkageUtils removed
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
test {
java {
srcDirs("testsrc/")
}
resources {
srcDirs("testsrc/")
exclude("**/*.java", "**/*.kt")
}
}
}
dependencies {
annotationProcessor libs.lombok
compileOnly libs.lombok
testCompileOnly libs.lombok
testAnnotationProcessor libs.lombok
}
+162 -41
View File
@@ -17,35 +17,150 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import org.apache.tools.ant.taskdefs.condition.Os
import java.net.URI
import java.util.Properties
rootProject.name = "SteamWar" rootProject.name = "SteamWar"
include("BauSystem") private val isInCi by lazy { Os.isFamily(Os.FAMILY_UNIX) && ProcessBuilder("hostname").start().inputStream.bufferedReader().readText().startsWith("steamwar.de") }
include("BauSystem:BauSystem_15")
include("BauSystem:BauSystem_18") dependencyResolutionManagement {
include("BauSystem:BauSystem_19") repositories {
include("BauSystem:BauSystem_20") mavenCentral()
include("BauSystem:BauSystem_Linkage")
include("BauSystem:BauSystem_Main") maven {
url = URI("https://m2.dv8tion.net/releases")
content {
includeGroup("net.dv8tion")
}
}
maven {
url = URI("https://repo.lunarclient.dev")
content {
includeGroup("com.lunarclient")
}
}
if (isInCi) {
maven {
url = URI("file:///var/www/html/maven/")
}
} else {
maven {
url = URI("https://steamwar.de/maven/")
credentials {
val swProps = Properties()
swProps.load(rootDir.resolve("steamwar.properties").inputStream())
username = swProps.getProperty("maven.username")
password = swProps.getProperty("maven.password")
}
}
}
maven {
url = URI("https://repo.codemc.io/repository/maven-snapshots/")
}
maven {
url = URI("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
}
maven {
url = URI("https://libraries.minecraft.net")
}
maven {
url = URI("https://repo.viaversion.com")
}
maven {
url = URI("https://repo.papermc.io/repository/maven-public/")
}
}
versionCatalogs {
create("libs") {
plugin("shadow", "com.github.johnrengelman.shadow").version("8.1.1")
library("lombok", "org.projectlombok:lombok:1.18.32")
library("luaj", "org.luaj:luaj-jse:3.0.1")
library("sqlite", "org.xerial:sqlite-jdbc:3.46.0.0")
library("mysql", "mysql:mysql-connector-java:8.0.33")
library("fastutil", "it.unimi.dsi:fastutil:8.5.6")
library("netty", "io.netty:netty-all:4.1.68.Final")
library("junit", "junit:junit:4.13.2")
library("hamcrest", "org.hamcrest:hamcrest:2.2")
library("jda", "net.dv8tion:JDA:4.4.0_352")
library("msgpack", "org.msgpack:msgpack-core:0.9.8")
library("spigotapi", "org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT")
library("spigotannotations", "org.spigotmc:plugin-annotations:1.2.3-SNAPSHOT")
library("paperapi", "io.papermc.paper:paper-api:1.19.2-R0.1-SNAPSHOT")
library("authlib", "com.mojang:authlib:1.5.25")
library("datafixer", "com.mojang:datafixerupper:4.0.26")
library("brigadier", "com.mojang:brigadier:1.0.18")
library("viaapi", "com.viaversion:viaversion-api:4.3.1")
library("anvilgui", "net.wesjd:anvilgui:1.7.0-SNAPSHOT")
library("nms8", "de.steamwar:spigot:1.8")
library("nms9", "de.steamwar:spigot:1.9")
library("nms10", "de.steamwar:spigot:1.10")
library("nms12", "de.steamwar:spigot:1.12")
library("nms14", "de.steamwar:spigot:1.14")
library("nms15", "de.steamwar:spigot:1.15")
library("nms18", "de.steamwar:spigot:1.18")
library("nms19", "de.steamwar:spigot:1.19")
library("nms20", "de.steamwar:spigot:1.20")
library("axiom", "de.steamwar:axiompaper:RELEASE")
library("worldedit12", "de.steamwar:worldedit:1.12")
library("worldedit15", "de.steamwar:worldedit:1.15")
library("fawe18", "de.steamwar:fastasyncworldedit:1.18")
library("velocity", "de.steamwar:velocity:RELEASE")
library("velocityapi", "com.velocitypowered:velocity-api:3.3.0-SNAPSHOT")
library("apolloapi", "com.lunarclient:apollo-api:1.1.0")
library("apollocommon", "com.lunarclient:apollo-common:1.1.0")
}
}
}
include(
"BauSystem",
"BauSystem:BauSystem_15",
"BauSystem:BauSystem_18",
"BauSystem:BauSystem_19",
"BauSystem:BauSystem_20",
"BauSystem:BauSystem_Linkage",
"BauSystem:BauSystem_Main"
)
include("CommandFramework") include("CommandFramework")
include("CommonCore") include(
include("CommonCore:SQL") "CommonCore",
include("CommonCore:Linkage") "CommonCore:SQL",
include("CommonCore:Network") "CommonCore:Linkage",
"CommonCore:Network"
)
include("FightSystem") include(
include("FightSystem:FightSystem_8") "FightSystem",
include("FightSystem:FightSystem_9") "FightSystem:FightSystem_8",
include("FightSystem:FightSystem_10") "FightSystem:FightSystem_9",
include("FightSystem:FightSystem_12") "FightSystem:FightSystem_10",
include("FightSystem:FightSystem_14") "FightSystem:FightSystem_12",
include("FightSystem:FightSystem_15") "FightSystem:FightSystem_14",
include("FightSystem:FightSystem_18") "FightSystem:FightSystem_15",
include("FightSystem:FightSystem_19") "FightSystem:FightSystem_18",
include("FightSystem:FightSystem_20") "FightSystem:FightSystem_19",
include("FightSystem:FightSystem_Core") "FightSystem:FightSystem_20",
include("FightSystem:FightSystem_Standalone") "FightSystem:FightSystem_Core",
"FightSystem:FightSystem_Standalone"
)
// include("KotlinCore") // include("KotlinCore")
@@ -55,23 +170,27 @@ include("MissileWars")
include("Realtime") include("Realtime")
include("SchematicSystem") include(
include("SchematicSystem:SchematicSystem_8") "SchematicSystem",
include("SchematicSystem:SchematicSystem_15") "SchematicSystem:SchematicSystem_8",
include("SchematicSystem:SchematicSystem_Core") "SchematicSystem:SchematicSystem_15",
"SchematicSystem:SchematicSystem_Core"
)
include("SpigotCore") include(
include("SpigotCore:CRIUDummy") "SpigotCore",
include("SpigotCore:SpigotCore_8") "SpigotCore:CRIUDummy",
include("SpigotCore:SpigotCore_9") "SpigotCore:SpigotCore_8",
include("SpigotCore:SpigotCore_10") "SpigotCore:SpigotCore_9",
include("SpigotCore:SpigotCore_12") "SpigotCore:SpigotCore_10",
include("SpigotCore:SpigotCore_14") "SpigotCore:SpigotCore_12",
include("SpigotCore:SpigotCore_15") "SpigotCore:SpigotCore_14",
include("SpigotCore:SpigotCore_18") "SpigotCore:SpigotCore_15",
include("SpigotCore:SpigotCore_19") "SpigotCore:SpigotCore_18",
include("SpigotCore:SpigotCore_20") "SpigotCore:SpigotCore_19",
include("SpigotCore:SpigotCore_Main") "SpigotCore:SpigotCore_20",
"SpigotCore:SpigotCore_Main"
)
include("Teamserver") include("Teamserver")
@@ -79,5 +198,7 @@ include("TowerRun")
include("TutorialSystem") include("TutorialSystem")
include("VelocityCore") include(
include("VelocityCore:Persistent") "VelocityCore",
"VelocityCore:Persistent"
)
+7 -9
View File
@@ -1,7 +1,5 @@
setup: []
build: build:
- "JAVA_HOME=/usr/lib/jvm/java-17-openj9-amd64 ./gradlew build --no-daemon" - "./gradlew build --no-daemon"
artifacts: artifacts:
"/binarys/bausystem2.0.jar": "BauSystem/build/libs/BauSystem-all.jar" "/binarys/bausystem2.0.jar": "BauSystem/build/libs/BauSystem-all.jar"
@@ -11,21 +9,21 @@ artifacts:
# KotlinCore !! # KotlinCore !!
"/binarys/lobbysystem2.0.jar": "LobbySystem/build/libs/LobbySystem-all.jar" "/binarys/lobbysystem2.0.jar": "LobbySystem/build/libs/LobbySystem.jar"
"/binarys/missilewars.jar": "MissileWars/build/libs/MissileWars-all.jar" "/binarys/missilewars.jar": "MissileWars/build/libs/MissileWars.jar"
"/binarys/realtime.jar": "Realtime/build/libs/Realtime-all.jar" "/binarys/realtime.jar": "Realtime/build/libs/Realtime.jar"
"/binarys/schematicsystem.jar": "SchematicSystem/build/libs/SchematicSystem-all.jar" "/binarys/schematicsystem.jar": "SchematicSystem/build/libs/SchematicSystem-all.jar"
"/binarys/spigotcore.jar": "SpigotCore/build/libs/SpigotCore-all.jar" "/binarys/spigotcore.jar": "SpigotCore/build/libs/SpigotCore-all.jar"
"/binarys/Builder.jar": "Teamserver/build/libs/Teamserver-all.jar" "/binarys/Builder.jar": "Teamserver/build/libs/Teamserver.jar"
"/binarys/towerrun.jar": "TowerRun/build/libs/TowerRun-all.jar" "/binarys/towerrun.jar": "TowerRun/build/libs/TowerRun.jar"
"/binarys/tutorialsystem.jar": "TutorialSystem/build/libs/TutorialSystem-all.jar" "/binarys/tutorialsystem.jar": "TutorialSystem/build/libs/TutorialSystem.jar"
"/binarys/PersistentVelocityCore.jar": "VelocityCore/Persistent/build/libs/Persistent.jar" "/binarys/PersistentVelocityCore.jar": "VelocityCore/Persistent/build/libs/Persistent.jar"
"/binarys/VelocityCore.jar": "VelocityCore/build/libs/VelocityCore-all.jar" "/binarys/VelocityCore.jar": "VelocityCore/build/libs/VelocityCore-all.jar"