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" }