Change shadowJar output and runServer version

This commit is contained in:
2025-04-07 21:52:09 -07:00
parent b1079eb091
commit 8494eef344

View File

@@ -5,7 +5,7 @@ plugins {
} }
group = "xyz.lncvrt" group = "xyz.lncvrt"
version = "1.0.1" version = "1.0.2-SNAPSHOT"
repositories { repositories {
mavenCentral() mavenCentral()
@@ -32,6 +32,11 @@ kotlin {
} }
tasks { tasks {
shadowJar {
archiveBaseName.set(rootProject.name)
archiveClassifier.set("")
}
build { build {
dependsOn("shadowJar") dependsOn("shadowJar")
} }
@@ -46,6 +51,6 @@ tasks {
} }
runServer { runServer {
minecraftVersion("1.21") minecraftVersion("1.21.4")
} }
} }