Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-01-24 11:24:02 +0000
committerAlexander Kurtakov2019-01-24 11:24:02 +0000
commit46b125139a2f19c77782de8ca26d61eeb7c004ff (patch)
tree3976f4530a6643f82d42bd9ec2b49a99952a6c2d
parent04ad3ec06fccab42c23d59bf29ac13213553a565 (diff)
downloadorg.eclipse.cdt-46b125139a2f19c77782de8ca26d61eeb7c004ff.tar.gz
org.eclipse.cdt-46b125139a2f19c77782de8ca26d61eeb7c004ff.tar.xz
org.eclipse.cdt-46b125139a2f19c77782de8ca26d61eeb7c004ff.zip
Fix compile when using Java 11
Tycho 1.4.0-SNAPSHOT is needed due to a fix in tycho for Java 11 compatibility. Change-Id: I3db48b8396b54c8fd8b6b5afd69730809d2ef761 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--pom.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 0a6418368a2..e61eaeef138 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,8 +14,8 @@
<packaging>pom</packaging>
<properties>
- <tycho-version>1.3.0</tycho-version>
- <tycho-extras-version>1.3.0</tycho-extras-version>
+ <tycho-version>1.4.0-SNAPSHOT</tycho-version>
+ <tycho-extras-version>1.4.0-SNAPSHOT</tycho-extras-version>
<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.reportPath>${project.basedir}/../../target/jacoco.exec</sonar.jacoco.reportPath>
@@ -84,6 +84,10 @@
<id>cbi</id>
<url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
</pluginRepository>
+ <pluginRepository>
+ <id>tycho-snapshots</id>
+ <url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
+ </pluginRepository>
</pluginRepositories>
<profiles>
<profile>

Back to the top