16 lines
243 B
Groovy
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"
|
|
}
|