You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/07/02 11:38:38 UTC

svn commit: r1356150 - /maven/plugins/trunk/maven-clean-plugin/pom.xml

Author: olamy
Date: Mon Jul  2 09:38:37 2012
New Revision: 1356150

URL: http://svn.apache.org/viewvc?rev=1356150&view=rev
Log:
move maven-plugin-plugin version to a property

Modified:
    maven/plugins/trunk/maven-clean-plugin/pom.xml

Modified: maven/plugins/trunk/maven-clean-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-clean-plugin/pom.xml?rev=1356150&r1=1356149&r2=1356150&view=diff
==============================================================================
--- maven/plugins/trunk/maven-clean-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-clean-plugin/pom.xml Mon Jul  2 09:38:37 2012
@@ -55,6 +55,7 @@ under the License.
 
   <properties>
     <mavenVersion>2.0.6</mavenVersion>
+    <mavenPluginPluginVersion>3.0</mavenPluginPluginVersion>
   </properties>
 
   <dependencies>
@@ -73,7 +74,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
-      <version>3.0</version>
+      <version>${mavenPluginPluginVersion}</version>
       <scope>compile</scope>
     </dependency>
 
@@ -92,7 +93,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-plugin-plugin</artifactId>
-          <version>3.0</version>
+          <version>${mavenPluginPluginVersion}</version>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -116,7 +117,13 @@ under the License.
   </build>
 
   <reporting>
-
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>${mavenPluginPluginVersion}</version>
+      </plugin>
+    </plugins>
   </reporting>
 
   <profiles>