From 7c9542263b7d245623d628e3c102202cf83f18c4 Mon Sep 17 00:00:00 2001 From: LexManos Date: Sat, 20 Aug 2016 17:11:08 -0700 Subject: [PATCH] Update gradle wrapper to 2.14, reference MC json, and add java6 compat lines to default MDK build.gradle. --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 5192034..68a98c4 100644 --- a/build.gradle +++ b/build.gradle @@ -24,6 +24,11 @@ version = "1.0" group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "modid" +sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly. +compileJava { + sourceCompatibility = targetCompatibility = "1.6" +} + minecraft { version = "@VERSION@" runDir = "run"