Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
This commit is contained in:
Christian Dietrich 2019-02-08 23:42:42 +01:00
parent bda917bab3
commit df71148106
2 changed files with 3 additions and 8 deletions

View file

@ -10,7 +10,6 @@ buildscript {
repositories.mavenCentral()
dependencies {
classpath "org.xtext:xtext-gradle-plugin:$versions.xtext_gradle_plugin"
classpath "io.spring.gradle:dependency-management-plugin:$versions.dependency_management_plugin"
}
}
@ -29,11 +28,8 @@ subprojects {
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom "org.eclipse.xtext:xtext-dev-bom:$project.version"
}
dependencies {
compile platform("org.eclipse.xtext:xtext-dev-bom:$project.version")
}
if (findProperty('compileXtend') == 'true') {
apply plugin: 'org.xtext.xtend'

View file

@ -7,6 +7,5 @@ version = '2.21.0-SNAPSHOT'
ext.versions = [
'xtext': version,
'xtext_bootstrap': '2.21.0.M1',
'xtext_gradle_plugin': '2.0.8',
'dependency_management_plugin' : '1.0.8.RELEASE'
'xtext_gradle_plugin': '2.0.8'
]