2022-02-27 22:38:55 +00:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.transformers.Log4j2PluginsCacheFileTransformer
|
|
|
|
|
|
|
|
val terminalConsoleVersion = "1.2.0"
|
2022-07-02 16:50:16 +00:00
|
|
|
val jlineVersion = "3.21.0"
|
2022-02-27 22:38:55 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(projects.core)
|
|
|
|
|
2022-09-26 15:43:17 +00:00
|
|
|
implementation(libs.terminalconsoleappender) {
|
2023-06-17 15:47:42 +00:00
|
|
|
exclude("org.apache.logging.log4j")
|
|
|
|
exclude("org.jline")
|
2022-02-27 22:38:55 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 15:43:17 +00:00
|
|
|
implementation(libs.bundles.jline)
|
2022-02-27 22:38:55 +00:00
|
|
|
|
2022-09-26 15:43:17 +00:00
|
|
|
implementation(libs.bundles.log4j)
|
2022-02-27 22:38:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass.set("org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap")
|
|
|
|
}
|
|
|
|
|
2023-05-25 01:46:43 +00:00
|
|
|
tasks.named<Jar>("jar") {
|
|
|
|
manifest {
|
|
|
|
// log4j provides multi-release java 9 code which resolves https://github.com/GeyserMC/Geyser/issues/3693
|
|
|
|
attributes("Multi-Release" to true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-27 22:38:55 +00:00
|
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
2022-09-19 15:26:47 +00:00
|
|
|
archiveBaseName.set("Geyser-Standalone")
|
2022-02-27 22:38:55 +00:00
|
|
|
|
|
|
|
transform(Log4j2PluginsCacheFileTransformer())
|
2023-04-20 09:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named<JavaExec>("run") {
|
|
|
|
val dir = projectDir.resolve("run")
|
|
|
|
dir.mkdirs()
|
|
|
|
jvmArgs("-Dio.netty.leakDetection.level=PARANOID")
|
|
|
|
workingDir = dir
|
|
|
|
}
|