You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by huser <mp...@atxg.com> on 2009/05/11 21:39:31 UTC

cobertura results

Hi,

I have Cobertura plugin configured in my pom.xml. Hudson renders the results
from coverage.xml and reports the coverage results classified as

Packages,Files, Classes,Methods,Lines,Conditionals

Why am I not seeing BranchRate,LineRate,PackageLineRate etc ? I am not using
"Maven Genertate Site" for any kind of Project Reports. 


My pom.xml looks like this:

                        </plugin>
                                <plugin>
                                <groupId>org.codehaus.mojo</groupId>
                               
<artifactId>cobertura-maven-plugin</artifactId>
                                <configuration>
                                        <aggregate>true</aggregate>
        <formats>
          <format>xml</format>
        </formats>
                                        <check>
                                               
<haltOnFailure>false</haltOnFailure>
                            <branchRate>70</branchRate>
                            <lineRate>70</lineRate>
                                       
<totalBranchRate>70</totalBranchRate>
                                        <totalLineRate>70</totalLineRate>
  <packageLineRate>85</packageLineRate>
            <packageBranchRate>85</packageBranchRate>
                </check>
</configuration>
</plugin>
-- 
View this message in context: http://www.nabble.com/cobertura-results-tp23490065p23490065.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org