[eclipse/xtext#1976] fix build problem under java 8

Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
This commit is contained in:
Christian Dietrich 2021-06-16 16:17:19 +02:00
parent 857b6e2efb
commit 75eb942b25
2 changed files with 2 additions and 6 deletions

View file

@ -47,9 +47,3 @@ subprojects {
apply from: "${rootDir}/gradle/manifest-gen.gradle"
apply from: "${rootDir}/gradle/validation.gradle"
}
task clean(type: Delete) {
group 'Build'
description 'Deletes the local repositories.'
delete 'build'
}

View file

@ -1,3 +1,4 @@
apply plugin: "org.gradle.java-base"
/*
* Root project configuration that is reused by subprojects to apply the Xtend compiler.
*/
@ -31,4 +32,5 @@ dependencies {
xtendCompiler "org.eclipse.xtend:org.eclipse.xtend.core:${versions.xtext_bootstrap}"
xtendCompiler "org.eclipse.xtext:org.eclipse.xtext.smap:${versions.xtext_bootstrap}"
xtendCompiler "org.xtext:xtext-gradle-builder:$versions.xtext_gradle_plugin"
xtendCompiler platform("org.eclipse.xtext:xtext-dev-bom:${versions.xtext_bootstrap}")
}