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/03 17:50:24 UTC

svn commit: r1356798 - /maven/plugins/trunk/maven-site-plugin/pom.xml

Author: olamy
Date: Tue Jul  3 15:50:23 2012
New Revision: 1356798

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

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

Modified: maven/plugins/trunk/maven-site-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/pom.xml?rev=1356798&r1=1356797&r2=1356798&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-site-plugin/pom.xml Tue Jul  3 15:50:23 2012
@@ -190,6 +190,7 @@ under the License.
     <wagonVersion>1.0</wagonVersion>
     <plexusVersion>1.5.4</plexusVersion>
     <scmVersion>1.4</scmVersion>
+    <mavenPluginPluginVersion>3.0</mavenPluginPluginVersion>
     <!-- for ITs -->
     <javadocPluginVersion>2.8.1</javadocPluginVersion>
     <projectInfoReportsPluginVersion>2.4</projectInfoReportsPluginVersion>
@@ -257,7 +258,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
-      <version>3.1-SNAPSHOT</version>
+      <version>${mavenPluginPluginVersion}</version>
       <scope>compile</scope>
     </dependency>
 
@@ -470,7 +471,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-plugin-plugin</artifactId>
-          <version>3.1-SNAPSHOT</version>
+          <version>${mavenPluginPluginVersion}</version>
           <configuration>
             <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
           </configuration>
@@ -543,6 +544,16 @@ under the License.
     </plugins>
   </build>
 
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>${mavenPluginPluginVersion}</version>
+      </plugin>
+    </plugins>
+  </reporting>
+
   <profiles>
     <profile>
       <id>run-its</id>