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

svn commit: r1410941 - /maven/release/trunk/maven-release-plugin/pom.xml

Author: rfscholte
Date: Sun Nov 18 17:41:28 2012
New Revision: 1410941

URL: http://svn.apache.org/viewvc?rev=1410941&view=rev
Log:
[MRELEASE-776] use maven-plugin-tools' java 5 annotations
upgrade maven-plugin-plugin to 3.2

Modified:
    maven/release/trunk/maven-release-plugin/pom.xml

Modified: maven/release/trunk/maven-release-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/pom.xml?rev=1410941&r1=1410940&r2=1410941&view=diff
==============================================================================
--- maven/release/trunk/maven-release-plugin/pom.xml (original)
+++ maven/release/trunk/maven-release-plugin/pom.xml Sun Nov 18 17:41:28 2012
@@ -51,7 +51,7 @@
   </distributionManagement>
   
   <properties>
-    <mavenPluginPluginVersion>3.1</mavenPluginPluginVersion>
+    <mavenPluginPluginVersion>3.2</mavenPluginPluginVersion>
   </properties>
   
   <dependencyManagement>
@@ -138,6 +138,9 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
         <version>${mavenPluginPluginVersion}</version>
+        <configuration>
+          <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
+        </configuration>
         <executions>
           <execution>
             <id>mojo-descriptor</id>
@@ -150,9 +153,6 @@
             <goals>
               <goal>helpmojo</goal>
             </goals>
-            <configuration>
-              <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
-            </configuration>
           </execution>
         </executions>
       </plugin>