Allow multiple output formats for Cobertura report
--------------------------------------------------

         Key: MCOBERTURA-22
         URL: http://jira.codehaus.org/browse/MCOBERTURA-22
     Project: Maven 2.x Cobertura Plugin
        Type: Improvement

    Versions: 2.0    
    Reporter: Walco van Loon
 Attachments: cobertura-maven-plugin-multiple-report-formats.patch

Currently, the Cobertura plugin can be configured to create reports in xml or 
html format, but not both. This patch enables specification of both; an example 
is provided below: 

<plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <configuration>
                <formats>
                        <format>xml</format>
                        <format>html</format>
                </formats>
        </configuration>
</plugin>

If no formats are specified, the default is html.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to