You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2009/05/26 17:51:03 UTC

svn commit: r778770 - /servicemix/components/bindings/servicemix-file/trunk/pom.xml

Author: gertv
Date: Tue May 26 15:51:03 2009
New Revision: 778770

URL: http://svn.apache.org/viewvc?rev=778770&view=rev
Log:
SMXCOMP-525: Exclude generated DefaultBootstrap class from Cobertura reports

Modified:
    servicemix/components/bindings/servicemix-file/trunk/pom.xml

Modified: servicemix/components/bindings/servicemix-file/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-file/trunk/pom.xml?rev=778770&r1=778769&r2=778770&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-file/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-file/trunk/pom.xml Tue May 26 15:51:03 2009
@@ -136,6 +136,18 @@
           </execution>
         </executions>
       </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>