Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Riley2018-12-20 13:00:52 +0000
committerWilliam Riley2018-12-20 14:03:14 +0000
commit84381c7a23ada610ec357553c66e3285312143b4 (patch)
treea627477c8b3a17032e082aa1f529dbc66a72098a
parent2c3e9b58a0114a0edde45a78f61b43044aa0a0c1 (diff)
downloadorg.eclipse.cdt-84381c7a23ada610ec357553c66e3285312143b4.tar.gz
org.eclipse.cdt-84381c7a23ada610ec357553c66e3285312143b4.tar.xz
org.eclipse.cdt-84381c7a23ada610ec357553c66e3285312143b4.zip
[releng] Try to fix signing with baseline replacement
-rw-r--r--pom.xml35
1 files changed, 22 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index 0e8a8eef3bb..881b2c6c5db 100644
--- a/pom.xml
+++ b/pom.xml
@@ -767,19 +767,28 @@
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
- <configuration>
- <baselineMode>warn</baselineMode>
- <baselineReplace>all</baselineReplace>
- <baselineRepositories>
- <repository>
- <url>${comparator.repo}</url>
- </repository>
- </baselineRepositories>
- <ignoredPatterns>
- <pattern>META-INF/ECLIPSE_.RSA</pattern>
- <pattern>META-INF/ECLIPSE_.SF</pattern>
- </ignoredPatterns>
- </configuration>
+ <executions>
+ <execution>
+ <id>baselinereplace-p2-metadata</id>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ <phase>verify</phase>
+ <configuration>
+ <baselineMode>warn</baselineMode>
+ <baselineReplace>all</baselineReplace>
+ <baselineRepositories>
+ <repository>
+ <url>${comparator.repo}</url>
+ </repository>
+ </baselineRepositories>
+ <ignoredPatterns>
+ <pattern>META-INF/ECLIPSE_.RSA</pattern>
+ <pattern>META-INF/ECLIPSE_.SF</pattern>
+ </ignoredPatterns>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>

Back to the top