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: [email protected]
For additional commands, e-mail: [email protected]