Files
mc-1.2.5/server/build.gradle
2025-06-11 21:45:45 +03:00

21 lines
341 B
Groovy

//file:noinspection GrDeprecatedAPIUsage
plugins {
id "application"
}
dependencies {
implementation(project(":shared"))
}
application {
mainClassName = "net.minecraft.server.MinecraftServer"
}
run {
workingDir = new File(buildDir, "run")
if (!workingDir.exists()) {
workingDir.mkdir()
}
args "nogui"
}