21 lines
341 B
Groovy
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"
|
|
}
|