Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Open Source Tools available.

...

Example.

Interesting.

Example.

svn trunk

Add at the end of the top level pom.xml there is a section for reoprtingreporting, expand as shown next 

No Format

<reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <aggregate>true</aggregate>
        </configuration>
      </plugin>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <configuration>     
        <formats>
                <format>xml</format>
                <format>html</format>
        </formats>
        </configuration>
 </plugin>
    </plugins>
  </reporting>
 



Next run mvn cobertura:cobertura.

Under the directories target/site is the beginning of the report.

 Screenshot

...

 Screenshot

Image Added

Resources.