[jboss-svn-commits] JBL Code SVN: r30820 - labs/jbossrules/trunk.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Dec 25 06:16:13 EST 2009
Author: ge0ffrey
Date: 2009-12-25 06:16:13 -0500 (Fri, 25 Dec 2009)
New Revision: 30820
Modified:
labs/jbossrules/trunk/pom.xml
Log:
move cobertura plugin definition to it's correct position (after surefire plugin definition)
Modified: labs/jbossrules/trunk/pom.xml
===================================================================
--- labs/jbossrules/trunk/pom.xml 2009-12-25 11:10:54 UTC (rev 30819)
+++ labs/jbossrules/trunk/pom.xml 2009-12-25 11:16:13 UTC (rev 30820)
@@ -523,25 +523,6 @@
See http://news.gmane.org/gmane.comp.apache.maven.announce
-->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <configuration>
- <instrumentation>
- <excludes>
- <exclude>org/drools/**/*Test.class</exclude>
- </excludes>
- </instrumentation>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
<!-- Building -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -698,6 +679,24 @@
<version>2.0-beta-7</version>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <instrumentation>
+ <excludes>
+ <exclude>org/drools/**/*Test.class</exclude>
+ </excludes>
+ </instrumentation>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>clean</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
@@ -712,17 +711,6 @@
<reporting>
<plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <configuration>
- <formats>
- <format>html</format>
- <format>xml</format>
- </formats>
- </configuration>
- </plugin>
-
<!-- Note: It's not possible to configure reporting plugins in pluginManagement in m2.0.4 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -774,6 +762,16 @@
</reportSet>
</reportSets>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>html</format>
+ <format>xml</format>
+ </formats>
+ </configuration>
+ </plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-clover-plugin</artifactId>-->
More information about the jboss-svn-commits
mailing list