我试图生成报告使用"mvn网站“,并希望它包含只有肯定火报告。
我一直在阅读一些例子和文档,但我不能简单地理解它。就像在这个链接中,报表名称是如何映射的?
<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>在上面的例子中,有“依赖”、“项目团队”等项目。
https://stackoverflow.com/questions/46540496
复制相似问题