From 5bba2d66d8a806804afd20138da59f90c40ed1d6 Mon Sep 17 00:00:00 2001 From: David Staheli Date: Sat, 1 Sep 2018 15:36:23 -0400 Subject: [PATCH] Make build.gradle compatible with Java 9+ --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 10a0308d5..b34729bfd 100644 --- a/build.gradle +++ b/build.gradle @@ -6,8 +6,8 @@ version = '1.0-SNAPSHOT' description = """Hello world sample web app""" -sourceCompatibility = 1.5 -targetCompatibility = 1.5 +sourceCompatibility = 1.8 +targetCompatibility = 1.8 repositories { maven { url "http://repo.maven.apache.org/maven2" }