aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 941d749e363..080f3785c61 100644
--- a/build.gradle
+++ b/build.gradle
@@ -255,6 +255,9 @@ subprojects {
tasks.withType(JavaCompile) {
options.compilerArgs.addAll(['--release', '8'])
options.encoding = 'UTF-8'
+ // redudant, just for IDEs to set the correct language level
+ sourceCompatibility = 1.8
+ targetCompatibility = 1.8
}
tasks.withType(Javadoc) {