2022-02-27 23:38:55 +01:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.transformers.Log4j2PluginsCacheFileTransformer
|
|
|
|
|
|
|
|
val terminalConsoleVersion = "1.2.0"
|
2022-07-02 18:50:16 +02:00
|
|
|
val jlineVersion = "3.21.0"
|
2022-02-27 23:38:55 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(projects.core)
|
|
|
|
|
2022-09-26 17:43:17 +02:00
|
|
|
implementation(libs.terminalconsoleappender) {
|
2022-02-27 23:38:55 +01:00
|
|
|
exclude("org.apache.logging.log4j", "log4j-core")
|
|
|
|
exclude("org.jline", "jline-reader")
|
|
|
|
exclude("org.jline", "jline-terminal")
|
|
|
|
exclude("org.jline", "jline-terminal-jna")
|
|
|
|
}
|
|
|
|
|
2022-09-26 17:43:17 +02:00
|
|
|
implementation(libs.bundles.jline)
|
2022-02-27 23:38:55 +01:00
|
|
|
|
2022-09-26 17:43:17 +02:00
|
|
|
implementation(libs.bundles.log4j)
|
2022-02-27 23:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass.set("org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
2022-09-19 17:26:47 +02:00
|
|
|
archiveBaseName.set("Geyser-Standalone")
|
2022-02-27 23:38:55 +01:00
|
|
|
|
|
|
|
transform(Log4j2PluginsCacheFileTransformer())
|
2023-04-20 11:46:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named<JavaExec>("run") {
|
|
|
|
val dir = projectDir.resolve("run")
|
|
|
|
dir.mkdirs()
|
|
|
|
jvmArgs("-Dio.netty.leakDetection.level=PARANOID")
|
|
|
|
workingDir = dir
|
|
|
|
}
|