Files
mc-1.2.5/server/build.gradle
2022-03-24 02:44:12 +03:00

24 lines
399 B
Groovy

apply plugin: 'java'
apply plugin: 'application'
group = 'minecraft'
version = '1.2.5'
compileJava {
sourceCompatibility = targetCompatibility = 1.8
options.encoding = 'UTF-8'
}
application {
mainClassName = 'net.minecraft.server.MinecraftServer'
}
run {
workingDir = new File(buildDir, 'run')
if (!workingDir.exists()) {
workingDir.mkdir()
}
args 'nogui'
}