Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2017-09-13 07:41:54 +0000
committerAlexander Kurtakov2017-10-06 05:47:44 +0000
commit36bb64544115e4f5a3e4ae49c22a5597c0b65dc5 (patch)
treebd1a93ea000abdbea6468dc6d8575844c9156c00
parente36e3a2e4ddb54faea69832c622f0f1009deb78a (diff)
downloadeclipse.platform.releng.aggregator-36bb64544115e4f5a3e4ae49c22a5597c0b65dc5.tar.gz
eclipse.platform.releng.aggregator-36bb64544115e4f5a3e4ae49c22a5597c0b65dc5.tar.xz
eclipse.platform.releng.aggregator-36bb64544115e4f5a3e4ae49c22a5597c0b65dc5.zip
Bug 519865 - Ignore signature files on baseline comparison
Ignore signature files to avoid false-positive (no warning) and allow to report more visible errors for change in actual payload. Change-Id: I9ed5b608001b1fa7f19b23f7cd328aaa7075ffd3 Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--eclipse-platform-parent/pom.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 16647fc52..1878adb88 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -559,6 +559,10 @@
<url>${comparator.repo}</url>
</repository>
</baselineRepositories>
+ <ignoredPatterns>
+ <pattern>META-INF/ECLIPSE_.RSA</pattern>
+ <pattern>META-INF/ECLIPSE_.SF</pattern>
+ </ignoredPatterns>
</configuration>
</plugin>
<plugin>

Back to the top