From 8125c64683f135304792e322697ec6807c083583 Mon Sep 17 00:00:00 2001 From: UpcraftLP Date: Fri, 15 Feb 2019 21:52:41 +0100 Subject: use constants for source/target compatibility levels --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 88a48e5..a698bd7 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ plugins { id 'fabric-loom' version '0.2.0-SNAPSHOT' } -sourceCompatibility = 1.8 -targetCompatibility = 1.8 +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 archivesBaseName = "modid" version = "1.0.0" -- cgit v1.2.3