Set up new maven project with cobertura
It runs fine, classes getting instrumented and generates html report
but netbeans shows 0% coverage, the view never refreshes
<cobertura.version>2.1.1</cobertura.version>
<cobertura.plugin.version>2.7</cobertura.plugin.version>
.........
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.plugin.version}</version>
<dependencies>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<version>${cobertura.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>