Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-02-14 12:08:28 +0000
committerAlexander Kurtakov2020-02-14 12:08:28 +0000
commit2b8e5d83803a6e169bd804472a54b6ca34446445 (patch)
tree309d3f6f802369751749883183f8dc83d98838e5
parent1c92dd5f9d58eadd7db8b2a56a4340f281baa322 (diff)
downloadeclipse.jdt.core-2b8e5d83803a6e169bd804472a54b6ca34446445.tar.gz
eclipse.jdt.core-2b8e5d83803a6e169bd804472a54b6ca34446445.tar.xz
eclipse.jdt.core-2b8e5d83803a6e169bd804472a54b6ca34446445.zip
Bug 560146 - Enable version comparison for jdt.core repoI20200215-0600I20200214-1800
Disable version comparison for org.eclipse.jdt.annotation_v1 Change-Id: I2b8e7daf93b625b49e2ee0022dabab75f58c875e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.jdt.annotation_v1/pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/org.eclipse.jdt.annotation_v1/pom.xml b/org.eclipse.jdt.annotation_v1/pom.xml
index 414920f360..5fcc887695 100644
--- a/org.eclipse.jdt.annotation_v1/pom.xml
+++ b/org.eclipse.jdt.annotation_v1/pom.xml
@@ -24,4 +24,28 @@
<properties>
<skipAPIAnalysis>true</skipAPIAnalysis>
</properties>
+ <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>
+ <baselines>
+ <baseline>${previous-release.baseline}</baseline>
+ </baselines>
+ <comparator>zip</comparator>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top