|
|
|
|
@@ -71,7 +71,7 @@ dependencies {
|
|
|
|
|
compileOnly("net.lax1dude.eaglercraft.backend:api-velocity:1.0.0")
|
|
|
|
|
compileOnly("net.lax1dude.eaglercraft.backend:api-bungee:1.0.0")
|
|
|
|
|
compileOnly("net.lax1dude.eaglercraft.backend:api-bukkit:1.0.0")
|
|
|
|
|
compileOnly("me.clip:placeholderapi:2.12.1")
|
|
|
|
|
compileOnly("me.clip:placeholderapi:2.12.2")
|
|
|
|
|
compileOnly("net.william278:papiproxybridge:1.8.4")
|
|
|
|
|
implementation("org.semver4j:semver4j:6.0.0")
|
|
|
|
|
implementation("de.marhali:json5-java:3.0.0")
|
|
|
|
|
@@ -111,12 +111,12 @@ val BUILD_PROPS = mapOf(
|
|
|
|
|
"git_cm_hash" to GIT_INFO.gitHashFull,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
|
|
|
tasks.named<JavaCompile>("compileJava") {
|
|
|
|
|
options.encoding = "UTF-8"
|
|
|
|
|
options.release.set(21)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType<ProcessResources>().configureEach {
|
|
|
|
|
tasks.named<ProcessResources>("processResources") {
|
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
|
outputs.upToDateWhen { false }
|
|
|
|
|
|
|
|
|
|
@@ -139,11 +139,12 @@ tasks.withType<ProcessResources>().configureEach {
|
|
|
|
|
inputs.files(tasks.named<JavaCompile>("compileJava").map { it.outputs.files })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType<Jar>().configureEach {
|
|
|
|
|
if (this !is ShadowJar) enabled = false
|
|
|
|
|
tasks.named<Jar>("jar") {
|
|
|
|
|
enabled = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType<ShadowJar>().configureEach {
|
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
|
|
|
enabled = true
|
|
|
|
|
doFirst {
|
|
|
|
|
delete(layout.buildDirectory.dir("libs"))
|
|
|
|
|
mkdir(layout.buildDirectory.dir("libs"))
|
|
|
|
|
@@ -168,17 +169,17 @@ tasks.register("printVars") {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType<RunServer>().configureEach {
|
|
|
|
|
tasks.named<RunServer>("runServer") {
|
|
|
|
|
minecraftVersion("1.12.2")
|
|
|
|
|
runDirectory.set(layout.projectDirectory.dir("run/paper"))
|
|
|
|
|
jvmArgs("-Dcom.mojang.eula.agree=true")
|
|
|
|
|
downloadPlugins {
|
|
|
|
|
github("lax1dude", "eaglerxserver", "v" + EAGXS_VER, "EaglerXServer.jar")
|
|
|
|
|
modrinth("placeholderapi", "2.12.1")
|
|
|
|
|
modrinth("placeholderapi", "2.12.2")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType<RunWaterfall>().configureEach {
|
|
|
|
|
tasks.named<RunWaterfall>("runWaterfall") {
|
|
|
|
|
waterfallVersion("1.21")
|
|
|
|
|
runDirectory.set(layout.projectDirectory.dir("run/waterfall"))
|
|
|
|
|
downloadPlugins {
|
|
|
|
|
@@ -186,8 +187,8 @@ tasks.withType<RunWaterfall>().configureEach {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType<RunVelocity>().configureEach {
|
|
|
|
|
velocityVersion("3.4.0-SNAPSHOT")
|
|
|
|
|
tasks.named<RunVelocity>("runVelocity") {
|
|
|
|
|
velocityVersion("3.5.0-SNAPSHOT")
|
|
|
|
|
runDirectory.set(layout.projectDirectory.dir("run/velocity"))
|
|
|
|
|
downloadPlugins {
|
|
|
|
|
github("lax1dude", "eaglerxserver", "v" + EAGXS_VER, "EaglerXServer.jar")
|
|
|
|
|
|