From 9cf976c9bf8f0fa745386b4a7d3d5c661d0b8e31 Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Wed, 6 Mar 2019 14:23:00 +0100 Subject: [PATCH] Change Java build target from 1.5 to 1.6 JDK 9 and higher only support targeting Java 6 and higher. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 29700f8..d0e78fc 100644 --- a/build.gradle +++ b/build.gradle @@ -8,8 +8,8 @@ project.group = 'de.hhu.stups' project.archivesBaseName = "sablecc" allprojects { - sourceCompatibility = 1.5 - targetCompatibility = 1.5 + sourceCompatibility = 1.6 + targetCompatibility = 1.6 } dependencies { -- GitLab