Update gradle wrapper to 2.14, reference MC json, and add java6 compat lines to default MDK build.gradle.

This commit is contained in:
LexManos 2016-08-20 17:11:08 -07:00
parent a3ec974285
commit 7c9542263b

View file

@ -24,6 +24,11 @@ version = "1.0"
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "modid" archivesBaseName = "modid"
sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly.
compileJava {
sourceCompatibility = targetCompatibility = "1.6"
}
minecraft { minecraft {
version = "@VERSION@" version = "@VERSION@"
runDir = "run" runDir = "run"