Skip to content

Commit

Permalink
Fix JDT compiler version (#197)
Browse files Browse the repository at this point in the history
Our builds take latest Xtend compiler. JDT API changed, Xtend compiler
fails. So we need to fix the JDT compiler version.

See eclipse/xtext-xtend#493 for details
  • Loading branch information
rmitin committed Dec 20, 2018
1 parent 05f30ed commit 70e62d0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ddk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,22 @@
<artifactId>org.eclipse.equinox.common</artifactId>
<version>3.10.0</version>
</dependency>
<!-- workaround for issue https://github.com/eclipse/xtext-xtend/issues/493 -->
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>3.15.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.compiler.apt</artifactId>
<version>1.3.300</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.compiler.tool</artifactId>
<version>1.2.300</version>
</dependency>
</dependencies>
<executions>
<execution>
Expand Down

0 comments on commit 70e62d0

Please sign in to comment.