You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2010/06/03 18:40:31 UTC

svn commit: r951061 - in /directory: apacheds/trunk/pom.xml shared/trunk/pom.xml

Author: felixk
Date: Thu Jun  3 16:40:30 2010
New Revision: 951061

URL: http://svn.apache.org/viewvc?rev=951061&view=rev
Log:
Exclude constant files from cobertura report - they will not have any tests.

Modified:
    directory/apacheds/trunk/pom.xml
    directory/shared/trunk/pom.xml

Modified: directory/apacheds/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/pom.xml?rev=951061&r1=951060&r2=951061&view=diff
==============================================================================
--- directory/apacheds/trunk/pom.xml (original)
+++ directory/apacheds/trunk/pom.xml Thu Jun  3 16:40:30 2010
@@ -858,6 +858,13 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
+        <configuration>
+          <instrumentation>
+            <excludes>
+              <exclude>org/apache/directory/server/**/*Constants.class</exclude>
+            </excludes>
+          </instrumentation>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

Modified: directory/shared/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/pom.xml?rev=951061&r1=951060&r2=951061&view=diff
==============================================================================
--- directory/shared/trunk/pom.xml (original)
+++ directory/shared/trunk/pom.xml Thu Jun  3 16:40:30 2010
@@ -406,6 +406,13 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
+        <configuration>
+          <instrumentation>
+            <excludes>
+              <exclude>org/apache/directory/shared/**/*Constants.class</exclude>
+            </excludes>
+          </instrumentation>
+        </configuration>
       </plugin>
 
       <plugin>