You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jr...@apache.org on 2006/09/25 00:31:29 UTC

svn commit: r449515 - /incubator/abdera/java/trunk/pom.xml

Author: jrduncans
Date: Sun Sep 24 15:31:28 2006
New Revision: 449515

URL: http://svn.apache.org/viewvc?view=rev&rev=449515
Log:
Added cobertura test coverage reporting to the pom

* pom.xml - Added test coverage report and build configuraiton to ensure clean coverage files.

Modified:
    incubator/abdera/java/trunk/pom.xml

Modified: incubator/abdera/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/pom.xml?view=diff&rev=449515&r1=449514&r2=449515
==============================================================================
--- incubator/abdera/java/trunk/pom.xml (original)
+++ incubator/abdera/java/trunk/pom.xml Sun Sep 24 15:31:28 2006
@@ -104,6 +104,11 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-report-plugin</artifactId>
       </plugin>
+      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
     </plugins>
   </reporting>
   
@@ -116,6 +121,17 @@
           <source>1.5</source>
           <target>1.5</target>
         </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>clean</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>
     </plugins>
     <pluginManagement>