Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
[eclipse-xtext/xtext#2077] workaround for broken metadata in eclipse …
Browse files Browse the repository at this point in the history
…platform

Signed-off-by: Christian Dietrich <[email protected]>
  • Loading branch information
cdietrich committed Jun 15, 2022
1 parent 0a708f0 commit 66e4f07
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xtext.generator</artifactId>
<version>${xtextVersion}</version>
<exclusions>
<exclusion>
<groupId>org.osgi.service</groupId>
<artifactId>org.osgi.service.prefs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xtext.generator</artifactId>
<version>${xtextVersion}</version>
<exclusions>
<exclusion>
<groupId>org.osgi.service</groupId>
<artifactId>org.osgi.service.prefs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xtext.generator</artifactId>
<version>${xtextVersion}</version>
<exclusions>
<exclusion>
<groupId>org.osgi.service</groupId>
<artifactId>org.osgi.service.prefs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xtext.generator</artifactId>
<version>${xtextVersion}</version>
<exclusions>
<exclusion>
<groupId>org.osgi.service</groupId>
<artifactId>org.osgi.service.prefs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xtext.generator</artifactId>
<version>${xtextVersion}</version>
<exclusions>
<exclusion>
<groupId>org.osgi.service</groupId>
<artifactId>org.osgi.service.prefs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,12 @@ class RuntimeProjectDescriptor extends TestedProjectDescriptor {
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.xtext.generator</artifactId>
<version>${xtextVersion}</version>
<exclusions>
<exclusion>
<groupId>org.osgi.service</groupId>
<artifactId>org.osgi.service.prefs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.xtext</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -910,6 +910,36 @@ public PomFile pom() {
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("\t");
_builder.append("<exclusions>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("\t\t");
_builder.append("<exclusion>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("\t\t\t");
_builder.append("<groupId>org.osgi.service</groupId>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("\t\t\t");
_builder.append("<artifactId>org.osgi.service.prefs</artifactId>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("\t\t");
_builder.append("</exclusion>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("\t");
_builder.append("</exclusions>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("\t");
_builder.append("</dependency>");
_builder.newLine();
_builder.append("\t\t\t");
Expand Down

0 comments on commit 66e4f07

Please sign in to comment.