Move to VanillaGradle 2.1 snapshot version. Fixes missing working directories for VanillaGradle runs.

This commit is contained in:
Tyler Hancock 2021-09-27 22:51:00 -06:00
parent e51ea1fc16
commit fe1bccafbf
No known key found for this signature in database
GPG Key ID: D10D32949D03E695

View File

@ -1,6 +1,6 @@
plugins { plugins {
id("java") id('java')
id("org.spongepowered.gradle.vanilla") version "0.2" id('org.spongepowered.gradle.vanilla') version '0.2.1-SNAPSHOT'
} }
archivesBaseName = mod_name archivesBaseName = mod_name
@ -12,11 +12,9 @@ repositories {
} }
minecraft { minecraft {
version(minecraft_version) // or: latestRelease() or latestSnapshot() version(minecraft_version)
runs { runs {
server() server()
client() client()
} }
} }
dependencies {
}