Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-07-21 11:18:07 +0000
committerAlexander Kurtakov2017-07-21 11:21:44 +0000
commit91f7343a6ef89e6a5077cb9c1fd71855a2cc62cb (patch)
tree7dfac13f9eb81ab678e3e6a43bd1c80e0efe9b7c /eclipse-platform-parent/pom.xml
parent0ecd8e83cbc7cc492aaf4a45a824921d04952ece (diff)
downloadeclipse.platform.releng.aggregator-91f7343a6ef89e6a5077cb9c1fd71855a2cc62cb.tar.gz
eclipse.platform.releng.aggregator-91f7343a6ef89e6a5077cb9c1fd71855a2cc62cb.tar.xz
eclipse.platform.releng.aggregator-91f7343a6ef89e6a5077cb9c1fd71855a2cc62cb.zip
Bug 520005 - Enforce maven-clean-plugin 3.0.0 via pluginManagement
SWT uses maven-clean-plugin to ensure proper builds and has set version to 3.0.0 in the pom. eclipse-parent pom doesn't specify anything and this results in 2.5 na 3.0 versions of the plugin used in different places. Let's specify the newer version and have everything use it. Change-Id: Ida3a87fe447a8c9565cacf0f5ca92e0bf3662a6a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index db438e663..35eb7851b 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -540,6 +540,11 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>3.0.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>

Back to the top