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/12 18:33:46 UTC

svn commit: r1360794 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Author: olamy
Date: Thu Jul 12 16:33:46 2012
New Revision: 1360794

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

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=1360794&r1=1360793&r2=1360794&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml Thu Jul 12 16:33:46 2012
@@ -89,6 +89,7 @@ under the License.
     <wagonVersion>1.0</wagonVersion>
     <scmVersion>1.7</scmVersion>
     <sitePluginVersion>3.1</sitePluginVersion>
+    <mavenPluginVersion>3.1</mavenPluginVersion>
   </properties>
 
   <dependencies>
@@ -158,7 +159,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
-      <version>3.1</version>
+      <version>${mavenPluginVersion}</version>
       <scope>compile</scope>
     </dependency>
 
@@ -373,7 +374,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-plugin-plugin</artifactId>
-          <version>3.1</version>
+          <version>${mavenPluginVersion}</version>
           <configuration>
             <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
           </configuration>
@@ -456,6 +457,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
+        <version>${mavenPluginVersion}</version>
         <configuration>
           <requirements>
             <jdk>1.5</jdk>
@@ -534,6 +536,7 @@ under the License.
       <build>
         <plugins>
           <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-invoker-plugin</artifactId>
             <configuration>
               <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>