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/30 08:51:31 UTC

svn commit: r1367007 - /maven/plugins/trunk/maven-reactor-plugin/pom.xml

Author: olamy
Date: Mon Jul 30 06:51:30 2012
New Revision: 1367007

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

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

Modified: maven/plugins/trunk/maven-reactor-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-reactor-plugin/pom.xml?rev=1367007&r1=1367006&r2=1367007&view=diff
==============================================================================
--- maven/plugins/trunk/maven-reactor-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-reactor-plugin/pom.xml Mon Jul 30 06:51:30 2012
@@ -60,6 +60,7 @@ under the License.
 
   <properties>
     <mavenVersion>2.0.9</mavenVersion>
+    <mavenPluginVersion>3.1</mavenPluginVersion>
   </properties>
 
   <dependencies>
@@ -76,7 +77,8 @@ 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>
     <dependency>
         <groupId>org.apache.maven.shared</groupId>
@@ -110,8 +112,9 @@ under the License.
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-plugin-plugin</artifactId>
-          <version>3.1</version>
+          <version>${mavenPluginVersion}</version>
           <configuration>
             <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
           </configuration>
@@ -132,4 +135,13 @@ under the License.
       </plugin>
     </plugins>
   </build>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>${mavenPluginVersion}</version>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>