Author: pete.muir(a)jboss.org
Date: 2008-07-01 10:04:56 -0400 (Tue, 01 Jul 2008)
New Revision: 31
Modified:
ri/trunk/pom.xml
Log:
switch to cobertura for coverage
Modified: ri/trunk/pom.xml
===================================================================
--- ri/trunk/pom.xml 2008-07-01 12:54:48 UTC (rev 30)
+++ ri/trunk/pom.xml 2008-07-01 14:04:56 UTC (rev 31)
@@ -9,9 +9,11 @@
<version>1.0.0-SNAPSHOT</version>
<name>Web Beans</name>
<
url>http://www.seamframework.org/WebBeans</url>
-
- <description>The reference implementation of JSR 299: Web
Beans</description>
-
+
+ <description>
+ The reference implementation of JSR 299: Web Beans
+ </description>
+
<developers>
<developer>
<name>Pete Muir</name>
@@ -22,15 +24,15 @@
<organization>JBoss, a division of Red Hat</organization>
<url>http://in.relation.to/Bloggers/Pete</url>
</developer>
-
+
<developer>
<name>Shane Bryzak</name>
<organization>JBoss, a division of Red Hat</organization>
</developer>
</developers>
-
-
+
+
<pluginRepositories>
<pluginRepository>
<id>snapshots.repository.codehaus.org</id>
@@ -80,38 +82,47 @@
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
- <artifactId>emma-maven-plugin</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.0</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>always</forkMode>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
</build>
-
+
<ciManagement>
<system>Hudson</system>
<url></url>
</ciManagement>
-
+
<issueManagement>
<system>JIRA</system>
<
url>http://jira.jboss.org/browse/WBRI</url>
</issueManagement>
-
+
<inceptionYear>2008</inceptionYear>
-
+
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<
url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
-
+
<scm>
<
connection>http://anonsvn.jboss.org/repos/webbeans</connection>
-
<
developerConnection>https://svn.jboss.org/repos/webbeans</developer...
+ <developerConnection>
+
https://svn.jboss.org/repos/webbeans
+ </developerConnection>
<
url>http://fisheye.jboss.org/browse/WebBeans</url>
</scm>
-
+
<distributionManagement>
<repository>
<!-- Copy the dist to the local checkout of the JBoss maven2 repo
${maven.repository.root} -->
@@ -127,4 +138,19 @@
</snapshotRepository>
</distributionManagement>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>html</format>
+ <format>xml</format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
</project>