0

import code

This commit is contained in:
2021-05-04 00:48:16 +03:00
commit d9ced9535e
745 changed files with 69002 additions and 0 deletions

23
server/build.gradle Normal file
View File

@@ -0,0 +1,23 @@
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'
}