Files
BoundlessHorizons/boundless-server/build.gradle.kts
vaporvee b581c65fd9 - Fixed nogui option causing crashes or ignoring jvm arguments
- updated dependency
You can now start the server like the following
2024-09-28 18:39:02 +02:00

42 lines
994 B
Plaintext

plugins {
id("java")
id("com.github.johnrengelman.shadow") version "7.1.2"
}
group = "com.vaporvee"
version = "1.1.0"
repositories {
mavenCentral()
}
dependencies {
implementation("org.apache.logging.log4j:log4j-api:2.24.0")
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
implementation("com.google.code.gson:gson:2.8.9")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks {
jar {
manifest {
attributes(
"Implementation-Title" to project.name,
"Implementation-Version" to project.version,
"Main-Class" to "com.vaporvee.boundlessutil.BoundlessServer"
)
}
}
shadowJar {
archiveFileName.set("boundless-server.jar")
manifest {
attributes(
"Main-Class" to "com.vaporvee.boundlessutil.BoundlessServer"
)
}
}
}