Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2019-11-20 11:46:59 +0000
committerNoopur Gupta2019-11-20 11:46:59 +0000
commit12a2e2716dfb47cde5775c30bee60366f901f3cb (patch)
treebcc09b07f1456cdc51cb83042d67c537bba5deaa
parentb9ed701bf33ab911e6b7191828c13c9c8bc73f95 (diff)
downloadeclipse.jdt.ui-12a2e2716dfb47cde5775c30bee60366f901f3cb.tar.gz
eclipse.jdt.ui-12a2e2716dfb47cde5775c30bee60366f901f3cb.tar.xz
eclipse.jdt.ui-12a2e2716dfb47cde5775c30bee60366f901f3cb.zip
Bug 553255: [14] Gerrit builds for JDT UI BETA_JAVA14 should work withY20191127-0140Y20191126-0500
-rw-r--r--pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 8a9180f6bf..9046c86b01 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,6 +36,10 @@
<profiles>
<profile>
<id>build-individual-bundles</id>
+ <properties>
+ <eclipse-p2-repo.url>http://download.eclipse.org/eclipse/updates/4.14-Y-builds</eclipse-p2-repo.url>
+ <skipAPIAnalysis>true</skipAPIAnalysis>
+ </properties>
<repositories>
<repository>
<releases>
@@ -48,6 +52,26 @@
<url>https://repo.eclipse.org/content/repositories/eclipse/</url>
</repository>
</repositories>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-p2-extras-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution> <!-- Checks versions are properly bumped from one stream to the other -->
+ <id>compare-attached-artifacts-with-release</id>
+ <goals>
+ <goal>compare-version-with-baselines</goal>
+ </goals>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</profile>
</profiles>

Back to the top