I'm currently writing almost the same plugin, formerly (in the Maven 1 world) known as "Dashboard Plugin". Isn't that funny (I think it isn't)? Would it probably not be better to focus such efforts within the Maven project itself rather than having each company writing it's own Dashboard plugin for Maven 2?

Your question: I simply wrote the <plugin> section for this plugin behind all others in the POM and that seems to work. Of course, one has to check if the required XML lies there as expected. ATM, I'm simply leaving the respective table cells in the generated report empty if that should happen.

-Gisbert

J.J.B. Rentrop wrote:
Hi all,

I'm looking for ways to enable an aggregate report for multi module
projects for tools like checkstyle, cobertura, findbugs, surefire etc.

One approach I'm trying is to first generate all reports and xml data
files for each module and afterwards loop through each module, read
their xml output file and create an aggregation report based on that data.

The problem I face is that my aggregation MavenReport executes before
the reports of each modules has been executed. When I run "mvn site" it
will create an empty aggregate report, because it's unable to gather the
data from each module. If I run it a second time it will work because
then the data files of each module are available.

Is there a way to make my aggregation MavenReport execute after the
reports of all modules have been generated? I have tried some
annotations but it didn't work.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to