Mave2 Dashboard Plugin
The dashboard plugin can be used to aggregate into a quick-to-read report the detailed results of other Maven2 report plugins (Cobertura, Surefire, Checkstyle, PMD, CPD, etc). As of 1/29/2007, the plugin has not yet been released (it is sandboxed at mojo.coehaus), so version 1.0-SNAPSHOT must be used. The plugin must be added to the pom.xml as the very last report plugin:
[....]
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dashboard-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
</plugin>
</plugins>
</reporting>
</project>
The codehaus snapshots repository must be added in the specific section in the pom:
[....]
<pluginRepository>
<id>codehaus.snapshots</id>
<name>Codehaus Maven Snapshot Repository</name>
<url>http://snapshots.repository.codehaus.org/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
[...]
For more information, see http://mojo.codehaus.org/dashboard-maven-plugin/
