I have a Project that has both surefire and failsafe tests in it, and I
am trying to create a single test-reports for all of our tests. I am
currently using the following in my attempt:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<reportsDirectories>
<reportsDirectory>target/failsafe-reports</reportsDirectory>
<reportsDirectory>target/surefire-reports</reportsDirectory>
</reportsDirectories>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
and this creates a unified report, in each module that has tests.
Instead of module level I need this at a Project level. Any suggestions?