I have a maven based project. There are four different projects like shown in the structure below. Each main project and the subprojects have their own pom.xml files.
ProjectA
|
--------subProjects
ProjectB
|
--------subprojects
ProjectC
|
--------subProjects
ProjectD
|
-------subprojects
I am running mvn site on ProjectC which is dependent on ProjectB which is inter-dependent on ProjectA and ProjectB
So when i run maven site all the test results for all these projects get created individually. What I would also like to do is to create a aggregation of all the test results in these projects and sub-projects and show it in one place.
So is it possible with maven site?

