Skip to content

Commit

Permalink
Merge pull request #28 from xtext/cd_workaround_xtext_issue2077
Browse files Browse the repository at this point in the history
[eclipse-xtext/xtext#2077] workaround for broken metadata in eclipse platform
  • Loading branch information
cdietrich authored Jun 15, 2022
2 parents 343c89f + df21d9f commit 2cb49b6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ dependencies {
implementation "de.undercouch:gradle-download-task:4.0.0"
implementation "org.tukaani:xz:1.8"
}

configurations.all {
if (name.contains("xtendTooling") || name.contains("xtextTooling")) {
dependencies {
add(name, platform("org.eclipse.xtext:xtext-dev-bom:$xtextVersion"))
}
}
}

0 comments on commit 2cb49b6

Please sign in to comment.