tags:

views:

117

answers:

3

I'm looking for a plugin that will aggregate various reports from our maven project (which consists of many modules). I was using dashboard maven plugin but it doesn't seem to be updated lately and I have troubles with the reports it generates (mainly it makes only surefire reports, no pmd, findbugs, cobertura as it should).

So I'm looking for replacement, are there any similar plugins for maven2?

+1  A: 

I've not yet had an opportunity to test it out myself, but I've heard that the XRadar plugin is pretty good.

It's "Designed for use with , JDepend , PMD , PMD-CPD , JavaNCSS , CKJM , Checkstyle , FindBugs , CLOC , JUnit , EMMA , Java2HTML and Ant."

The xradar-maven-plugin page describes how to get started.

Rich Seller
+3  A: 

Whilst it's not directly a maven plugin, have you considered looking at hudson? It does a fair bit of reporting aggregation for you… It's worked well for me, but I limit myself to PMD+findbugs+JUnit.

I've heard tell that Sonar is also a good dashboard, but I've not personally used it.

Dominic Mitchell
+1 for Sonar, was just about to add a reference myself
Rich Seller
+1 for Sonar, Sonar is currently the greatest quality dashboard
Pascal Thivent
well, I'm using teamcity so switching to hudnson would be to much of a work,I tried Sonar, but it seams an overkill to run another server just for reports
krzyk
A: 

If you want to see Sonar in action, have a look to the public instance Nemo : http://nemo.sonarsource.org/

Freddy Mallet