0
This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mc-a1.1.2_01/server/build.gradle
2022-03-24 02:32:54 +03:00

24 lines
399 B
Groovy

apply plugin: 'java'
apply plugin: 'application'
group = 'minecraft'
version = '0.2.1'
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'
}