Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2019-06-07 20:45:27 +0000
committerJonah Graham2019-06-07 21:20:27 +0000
commit7741bd98f7b08a281c4b7f60e60c5839f315f760 (patch)
tree671418f4043de7dbe02f3d071bf11acbeedb0406
parent53e14118d2448ea9aca75eea9093f7c863fe23d1 (diff)
downloadorg.eclipse.cdt-7741bd98f7b08a281c4b7f60e60c5839f315f760.tar.gz
org.eclipse.cdt-7741bd98f7b08a281c4b7f60e60c5839f315f760.tar.xz
org.eclipse.cdt-7741bd98f7b08a281c4b7f60e60c5839f315f760.zip
Bug 547894: Baseline replace must happen after pack200CDT_9_8_0
The configuration for baseline replacement needs to be split. This may be a bug in Tycho, but I cannot tell. It seems to me the configuration about ignoredPatterns should be read from the configuration block in the execution block, but it isn't. Change-Id: I35e3f4007b0afc21d8bd81d5b07f76581879bc76
-rw-r--r--pom.xml16
1 files changed, 9 insertions, 7 deletions
diff --git a/pom.xml b/pom.xml
index 5091ef08154..edb812d0f48 100644
--- a/pom.xml
+++ b/pom.xml
@@ -750,16 +750,18 @@
<goal>p2-metadata</goal>
</goals>
<phase>verify</phase>
+ <configuration>
+ <baselineMode>fail</baselineMode>
+ <baselineReplace>all</baselineReplace>
+ <baselineRepositories>
+ <repository>
+ <url>${comparator.repo}</url>
+ </repository>
+ </baselineRepositories>
+ </configuration>
</execution>
</executions>
<configuration>
- <baselineMode>fail</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>

Back to the top