I'm not sure that this has always been the case, but it seems that the Project Team ( team-list.html) report should be generated by default at the time mvn siteand available under Project Information . I just checked this with a project example and it works as expected.
If this is not the case, try maven-project-info-reports-pluginsetting it explicitly to generate a report.
<project>
...
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.2</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>project-team</report>
...
</reports>
</reportSet>
</reportSets>
</plugin>
...
</plugins>
</reporting>
...
</project>
Are you using a specific version of the maven site plugin? Which version of Maven exactly?
source
share