From 7cab99198af39b1c062fdb6dbbb1776946692b78 Mon Sep 17 00:00:00 2001 From: Michael Simacek Date: Mon, 26 Mar 2018 14:07:20 +0200 Subject: [PATCH 17/18] Set core-api source level to 8 --- subprojects/core-api/core-api.gradle | 2 +- subprojects/core/core.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/core-api/core-api.gradle b/subprojects/core-api/core-api.gradle index c90a0b48eec..587729f5da2 100644 --- a/subprojects/core-api/core-api.gradle +++ b/subprojects/core-api/core-api.gradle @@ -15,7 +15,7 @@ */ apply plugin: 'java-library' -sourceCompatibility = javaVersion.java9Compatible ? 1.6 : 1.5 +sourceCompatibility = 8 dependencies { api project(":baseServices") diff --git a/subprojects/core/core.gradle b/subprojects/core/core.gradle index b6d6eba552c..bf44aed2ed3 100755 --- a/subprojects/core/core.gradle +++ b/subprojects/core/core.gradle @@ -16,7 +16,7 @@ apply plugin: 'java-library' apply from: "$rootDir/gradle/taskProperties.gradle" -sourceCompatibility = javaVersion.java9Compatible ? 1.6 : 1.5 +sourceCompatibility = 8 configurations { reports -- 2.20.1