Author: ffang
Date: Wed May 27 02:57:56 2009
New Revision: 778977
URL: http://svn.apache.org/viewvc?rev=778977&view=rev
Log:
[SMXCOMP-523]Exclude generated DefaultBootstrap class from Cobertura reports
Modified:
servicemix/components/engines/servicemix-cxf-se/trunk/pom.xml
Modified: servicemix/components/engines/servicemix-cxf-se/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-cxf-se/trunk/pom.xml?rev=778977&r1=778976&r2=778977&view=diff
==============================================================================
--- servicemix/components/engines/servicemix-cxf-se/trunk/pom.xml (original)
+++ servicemix/components/engines/servicemix-cxf-se/trunk/pom.xml Wed May 27
02:57:56 2009
@@ -236,6 +236,19 @@
<forkMode>pertest</forkMode>
</configuration>
</plugin>
+ <!-- exclude generated DefaultBootstrap class from Cobertura reports -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <instrumentation>
+ <excludes>
+
<exclude>org/apache/servicemix/common/DefaultBootstrap.class</exclude>
+ </excludes>
+ </instrumentation>
+ </configuration>
+ </plugin>
+
</plugins>
</build>
</project>