Files
mc-1.2.5/server/build.gradle
2024-07-08 15:45:43 +03:00

16 lines
243 B
Groovy

plugins {
id "application"
}
application {
mainClassName = "net.minecraft.server.MinecraftServer"
}
run {
workingDir = new File(buildDir, "run")
if (!workingDir.exists()) {
workingDir.mkdir()
}
args "nogui"
}