[jbpm-commits] JBoss JBPM SVN: r6953 - jbpm3/branches/jbpm-3.2-soa/core.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Jun 14 03:12:16 EDT 2011


Author: marco.rietveld
Date: 2011-06-14 03:12:16 -0400 (Tue, 14 Jun 2011)
New Revision: 6953

Modified:
   jbpm3/branches/jbpm-3.2-soa/core/pom.xml
Log:
Added cobertura (attached to site phase, not executed during clean install)

Modified: jbpm3/branches/jbpm-3.2-soa/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/pom.xml	2011-06-07 08:49:52 UTC (rev 6952)
+++ jbpm3/branches/jbpm-3.2-soa/core/pom.xml	2011-06-14 07:12:16 UTC (rev 6953)
@@ -114,7 +114,18 @@
     </dependency>
   </dependencies>
 
-  <!-- Plugins -->
+  <!-- Reporting Plugins -->
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+		<artifactId>cobertura-maven-plugin</artifactId>
+		<version>2.5.1</version>
+	  </plugin>
+    </plugins>
+  </reporting>
+
+  <!-- Build plugins -->
   <build>
     <resources>
       <resource>
@@ -212,6 +223,32 @@
           </excludes>
         </configuration>
       </plugin>
+      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <executions>
+            <execution>
+              <id>clean</id>
+              <phase>pre-site</phase>
+              <goals>
+                <goal>clean</goal>
+              </goals>
+            </execution>
+            <execution>
+              <id>instrument</id>
+              <phase>site</phase>
+              <goals>
+                <goal>instrument</goal>
+                <goal>cobertura</goal>
+                <goal>check</goal>
+              </goals>
+            </execution>
+          </executions>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 



More information about the jbpm-commits mailing list