You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/08/04 01:22:14 UTC

svn commit: r682231 - /maven/plugins/trunk/maven-patch-plugin/pom.xml

Author: bentmann
Date: Sun Aug  3 16:22:13 2008
New Revision: 682231

URL: http://svn.apache.org/viewvc?rev=682231&view=rev
Log:
o Added temporary fix for failures during IT preparation

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

Modified: maven/plugins/trunk/maven-patch-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-patch-plugin/pom.xml?rev=682231&r1=682230&r2=682231&view=diff
==============================================================================
--- maven/plugins/trunk/maven-patch-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-patch-plugin/pom.xml Sun Aug  3 16:22:13 2008
@@ -69,6 +69,26 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>2.4.2</version>
+        <executions>
+          <!-- FIXME: Disable execution, makes IT preparation fail (for whatever reason...) -->
+          <execution>
+            <id>generated-helpmojo</id>
+            <configuration>
+              <extractors>
+                <extractor/>
+              </extractors>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <profiles>
     <profile>
       <id>integration-tests</id>
@@ -178,5 +198,4 @@
       </build>
     </profile>
   </profiles>
-  
 </project>