From a7269ab15b5df5f3eb00af330c3d1a9c855c5b85 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Sat, 25 Jul 2020 20:05:20 +0200 Subject: [PATCH] Java 8 is the minimum version --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8e2f5c4..331f637 100644 --- a/build.gradle +++ b/build.gradle @@ -9,8 +9,8 @@ buildscript { apply plugin: 'java' apply plugin: 'com.github.johnrengelman.shadow' -sourceCompatibility = '1.7' -targetCompatibility = '1.7' +sourceCompatibility = '1.8' +targetCompatibility = '1.8' compileJava { // Suppress warnings about internal api usage - https://stackoverflow.com/a/19553686/6238618