Develop Sef's answers. You can configure many Maven reports to aggregate results. To do this with the surefire-report plugin, you would do something like this:
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.4.2</version> <configuration> <aggregate>true</aggregate> <linkXRef>true</linkXRef> </configuration> </plugin> </plugins> </reporting>
Pay attention to the additional linkXRef property, this allows you to add cross-references to the generated html version of the source created by jxr plugin . The jxr plugin can also be configured for aggregation, so these two combinations allow you to view the entire structure of the project.
As far as I know, the maven-info-reports plugin does not perform aggregation.
Rich seller
source share