You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2014/12/06 21:34:57 UTC

svn commit: r1643607 - /maven/plugins/trunk/maven-invoker-plugin/pom.xml

Author: khmarbaise
Date: Sat Dec  6 20:34:57 2014
New Revision: 1643607

URL: http://svn.apache.org/r1643607
Log:
Cleaned up pom configuration and let the parent do it's work
removed execution block for apache-rat-plugin which causes
two runs of apache-rat-plugin:check goal.

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

Modified: maven/plugins/trunk/maven-invoker-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/pom.xml?rev=1643607&r1=1643606&r2=1643607&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-invoker-plugin/pom.xml Sat Dec  6 20:34:57 2014
@@ -69,7 +69,6 @@ under the License.
     <groovy-groupId>org.codehaus.groovy</groovy-groupId>
     <groovy-artifactId>groovy-all</groovy-artifactId>
     <groovy-version>2.0.1</groovy-version>
-    <mavenPluginPluginVersion>3.3</mavenPluginPluginVersion>
   </properties>
 
   <dependencies>
@@ -232,13 +231,6 @@ under the License.
     <pluginManagement>
       <plugins>
         <plugin>
-          <artifactId>maven-plugin-plugin</artifactId>
-          <version>${mavenPluginPluginVersion}</version>
-          <configuration>
-            <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
-          </configuration>
-        </plugin>
-        <plugin>
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
           <configuration>
@@ -248,14 +240,6 @@ under the License.
               <exclude>src/test/**/*.txt</exclude>
             </excludes>
           </configuration>
-          <executions>
-            <execution>
-              <id>check-rat</id>
-              <goals>
-                <goal>check</goal>
-              </goals>
-            </execution>
-          </executions>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -266,21 +250,6 @@ under the License.
         <artifactId>apache-rat-plugin</artifactId>
       </plugin>
       <plugin>
-        <artifactId>maven-plugin-plugin</artifactId>
-        <configuration>
-          <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
-        </configuration>
-        <executions>
-          <execution>
-            <id>generate-descriptor</id>
-            <goals>
-              <goal>descriptor</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-
-      <plugin>
         <groupId>org.codehaus.modello</groupId>
         <artifactId>modello-maven-plugin</artifactId>
         <executions>
@@ -326,10 +295,7 @@ under the License.
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-invoker-plugin</artifactId>
-              <!-- m-release-p-2.3.2 doesn't allow to specify a different version then the project.
-                 This would be true for jar projects, but not always for plugins.
-               -->
-              <version>1.8</version>
+              <version>1.9</version>
               <configuration>
                 <debug>true</debug>
                 <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>