Author: mfranklin
Date: Tue Oct  2 12:12:29 2012
New Revision: 1392879

URL: http://svn.apache.org/viewvc?rev=1392879&view=rev
Log:
Fixed issue where cobertura plugin was not generating XML report

Modified:
    rave/trunk/pom.xml

Modified: rave/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/rave/trunk/pom.xml?rev=1392879&r1=1392878&r2=1392879&view=diff
==============================================================================
--- rave/trunk/pom.xml (original)
+++ rave/trunk/pom.xml Tue Oct  2 12:12:29 2012
@@ -586,7 +586,13 @@
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>cobertura-maven-plugin</artifactId>
-                    <version>${cobertura.version}</version>
+                    <version>${cobertura.version}</version> 
+                    <configuration>
+                        <formats>
+                            <format>html</format>
+                            <format>xml</format>
+                        </formats>
+                    </configuration>
                 </plugin>
                 <!--This plugin's configuration is used to store Eclipse m2e 
settings only. It has no influence on the Maven build itself.-->
                 <plugin>
@@ -677,22 +683,6 @@
             </plugin>
         </plugins>
     </build>
-    <reporting>
-        <plugins>
-            <plugin>
-                <!-- use mvn cobertura:cobertura to generate coverage reports 
-->
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>cobertura-maven-plugin</artifactId>
-                <version>${cobertura.version}</version>
-                <configuration>
-                    <formats>
-                        <format>html</format>
-                        <format>xml</format>
-                    </formats>
-                </configuration>
-            </plugin>
-        </plugins>
-    </reporting>
     <modules>
         <module>rave-components</module>
         <module>rave-providers</module>


Reply via email to