Skip to content

Commit

Permalink
fixes xtend compilation issue 1373
Browse files Browse the repository at this point in the history
Applies the workaround suggested by
eclipse/xtext#1373

fixes bug #131

This workaround should be removed when bumping to xtext/xtend 2.15+

Signed-off-by: Didier Vojtisek <didier.vojtisek@inria.fr>

Signed-off-by: Didier Vojtisek <didier.vojtisek@inria.fr>
  • Loading branch information
dvojtise committed Jan 9, 2019
1 parent c179025 commit 4e92777
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,22 +204,28 @@
</execution>
</executions>
<!-- workaround https://github.com/eclipse/xtext/issues/1231 -->
<!-- workaround https://github.com/eclipse/xtext/issues/1373 -->
<!-- Remove with upgrade to Xtext 2.15 -->
<dependencies>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>3.14.0</version>
<version>3.13.102</version>
</dependency>

<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.compiler.apt</artifactId>
<version>1.3.200</version>
<version>1.3.110</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.compiler.tool</artifactId>
<version>1.2.200</version>
<version>1.2.101</version>
</dependency>
<dependency>
<groupId>org.eclipse.emf</groupId>
<artifactId>org.eclipse.emf.codegen</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 4e92777

Please sign in to comment.