I'm trying to generate report using "mvn site" and want it to contain just surefire reports.
I've been reading some examples and documentation but I couldn't simply understand it. Like in this link, how does the report name gets mapped?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>project-team</report>
<report>mailing-list</report>
<report>cim</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
In the above example there are items like "dependencies", "project-team", etc.
How do I get the name of the report to include to that list if I want to add one? Say I want to just include surefire reports, how do I get the name of the surefire report?
How do these names get mapped?