Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2014-11-17 13:52:53 +0000
committerDavid Williams2014-11-17 14:21:05 +0000
commitfe1a59842fde58f5c5cb932ae19acb2dbe13b5f6 (patch)
tree8d25de3ca139a9973f6e1102f8519ffc5ec448ce /eclipse-platform-parent/pom.xml
parent4d2b6172bbe5fe796d279ed57dbde8a782eebcc8 (diff)
downloadeclipse.platform.releng.aggregator-fe1a59842fde58f5c5cb932ae19acb2dbe13b5f6.tar.gz
eclipse.platform.releng.aggregator-fe1a59842fde58f5c5cb932ae19acb2dbe13b5f6.tar.xz
eclipse.platform.releng.aggregator-fe1a59842fde58f5c5cb932ae19acb2dbe13b5f6.zip
Bug 451889 - Consolidate maven-resources-plugin configuration and update
version The version should be set only once in pluginManagement section in eclipse-platform-parent instead of everywhere maven-resources-plugin config is changed. This reduces the chance for using different version in different places of the build. Update maven-resources-plugin to 2.7 version containing following fixes http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11145&version=18645 and most noticeably http://jira.codehaus.org/browse/MSHARED-220. Change-Id: Ice329be193e801b1b0048321056dbb6dc2b216c8 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index f062fb9de..30e82227b 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -296,7 +296,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
<executions>
<execution>
<id>filter-resources</id>
@@ -439,6 +438,11 @@
</baselineRepositories>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
</plugins>
</pluginManagement>
</build>
@@ -745,7 +749,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
<executions>
<execution>
<id>process-about.mappings</id>

Back to the top