Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-02-17 13:03:50 +0000
committerAlexander Kurtakov2020-02-17 13:03:50 +0000
commit1a930ae92c069b627b521736fa49ab1dc3794efb (patch)
treea2fb74a8060d0c1099a61304847c99b2c07f8ec3
parent04350c54d7ad28a9113caced2d4650414a47e120 (diff)
downloadeclipse.jdt.core-1a930ae92c069b627b521736fa49ab1dc3794efb.tar.gz
eclipse.jdt.core-1a930ae92c069b627b521736fa49ab1dc3794efb.tar.xz
eclipse.jdt.core-1a930ae92c069b627b521736fa49ab1dc3794efb.zip
Bug 560146 - Enable version comparison for jdt.core repoX20200218-0510X20200217-1120I20200218-0600I20200217-1800
Skip version comparison for o.e.jdt.annotation too. Change-Id: Ife1333e07550ed2f84fae65a6bb0055bb55c628f Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.jdt.annotation/pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/org.eclipse.jdt.annotation/pom.xml b/org.eclipse.jdt.annotation/pom.xml
index 5b30b436b0..5fcd1d387f 100644
--- a/org.eclipse.jdt.annotation/pom.xml
+++ b/org.eclipse.jdt.annotation/pom.xml
@@ -36,6 +36,26 @@
</compilerArgs>
</configuration>
</plugin>
+ <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