Author: bayard
Date: Thu Aug 10 23:08:36 2006
New Revision: 430688
URL: http://svn.apache.org/viewvc?rev=430688&view=rev
Log:
The BZip2 tests have problems when they are instrumented, they hang and the
site can't be built. Added configuration so those classes do not get
instrumented
Modified:
jakarta/commons/sandbox/compress/trunk/pom.xml
Modified: jakarta/commons/sandbox/compress/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/sandbox/compress/trunk/pom.xml?rev=430688&r1=430687&r2=430688&view=diff
==============================================================================
--- jakarta/commons/sandbox/compress/trunk/pom.xml (original)
+++ jakarta/commons/sandbox/compress/trunk/pom.xml Thu Aug 10 23:08:36 2006
@@ -61,6 +61,30 @@
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
+
+ <!-- turn off cobertura until we figure out why it's hanging -->
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <instrumentation>
+ <excludes>
+ <exclude>org/apache/commons/compress/bzip2/**/*.class</exclude>
+
<exclude>org/apache/commons/compress/compressors/bzip2/**/*.class</exclude>
+ </excludes>
+ </instrumentation>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>clean</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
</build>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]