You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cn...@apache.org on 2013/08/09 01:20:02 UTC

svn commit: r1512096 - /hadoop/common/branches/branch-2/hadoop-maven-plugins/pom.xml

Author: cnauroth
Date: Thu Aug  8 23:20:01 2013
New Revision: 1512096

URL: http://svn.apache.org/r1512096
Log:
HADOOP-9315. Port HADOOP-9249 hadoop-maven-plugins Clover fix to branch-2 to fix build failures. Contributed by Dennis Y.

Modified:
    hadoop/common/branches/branch-2/hadoop-maven-plugins/pom.xml

Modified: hadoop/common/branches/branch-2/hadoop-maven-plugins/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-maven-plugins/pom.xml?rev=1512096&r1=1512095&r2=1512096&view=diff
==============================================================================
--- hadoop/common/branches/branch-2/hadoop-maven-plugins/pom.xml (original)
+++ hadoop/common/branches/branch-2/hadoop-maven-plugins/pom.xml Thu Aug  8 23:20:01 2013
@@ -71,6 +71,17 @@
           </execution>
         </executions>
       </plugin>
+      <!--
+      Skip Clover instrumentation for this module to prevent error finding Clover
+      classes during plugin execution when running a build with Clover enabled.
+      -->
+      <plugin>
+        <groupId>com.atlassian.maven.plugins</groupId>
+        <artifactId>maven-clover2-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>