diff options
author | Jonah Graham | 2019-06-07 20:45:27 +0000 |
---|---|---|
committer | Jonah Graham | 2019-06-09 13:15:13 +0000 |
commit | 8f93e5b26e7422d0e9a7d64922429f9555644d70 (patch) | |
tree | 6db13ce591d52d2430371aba5e54885d3bc8b429 | |
parent | 87da77a7e2cd9a664bbf0a7305453762930b31bd (diff) | |
download | org.eclipse.cdt-cdt_9_7.tar.gz org.eclipse.cdt-cdt_9_7.tar.xz org.eclipse.cdt-cdt_9_7.zip |
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.xml | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -769,16 +769,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> |