From 27a82a01cd066a829637f4ebc8e05fe3d3be330b Mon Sep 17 00:00:00 2001 From: alexbegt Date: Sun, 11 Jun 2017 13:24:45 -0400 Subject: [PATCH] Use Java 8 and not Java 6! --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index bcd6850..abaa53a 100755 --- a/build.gradle +++ b/build.gradle @@ -41,6 +41,9 @@ group = "cpw.mods" // http://maven.apache.org/guides/mini/guide-naming-conventio // This is our actual project within the group. Note: FML has "fml" here. But this is ironchest. archivesBaseName = "ironchest" +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + // Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here minecraft { version = "1.12-14.21.0.2321"