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/08/01 19:09:44 UTC

svn commit: r1368130 - /maven/plugins/trunk/maven-checkstyle-plugin/pom.xml

Author: olamy
Date: Wed Aug  1 17:09:44 2012
New Revision: 1368130

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

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

Modified: maven/plugins/trunk/maven-checkstyle-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/pom.xml?rev=1368130&r1=1368129&r2=1368130&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/pom.xml Wed Aug  1 17:09:44 2012
@@ -56,6 +56,7 @@ under the License.
     <checkstyleVersion>5.5</checkstyleVersion>
     <doxiaVersion>1.1.3</doxiaVersion>
     <sitePluginVersion>3.0</sitePluginVersion>
+    <mavenPluginVersion>3.1</mavenPluginVersion>
   </properties>
 
   <dependencies>
@@ -83,7 +84,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>provided</scope>
     </dependency>
 
@@ -223,8 +224,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>
@@ -296,6 +298,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>