Maven 报告执行器

使用 Maven 3 管理报表插件执行的类,通过MavenReportExecutor ( implementation ):报表插件可以在maven-site-plugin的<configuration>元素或任何其他报表构建插件中配置,其 XML 模型对应于插件的List< ReportPlugin > 参数:

<reportPlugins>
  <plugin>
    <groupId/>
    <artifactId/>
    <version/>
    <configuration/>
    <reports/>
    <reportSets>
      <reportSet>
        <id/>
        <configuration/>
        <reports/>
      </reportSet>
    </reportSets>
  </plugin>
</reportPlugins>

请注意,这是 POM <reporting>部分中插件的模型:

  • 没有<inherited>元素:此级别不支持报告插件配置继承(请参阅MSITE-484),
  • 在<reportSet>之外添加了额外的<reports>列表,在通常情况下简化了报告配置,
  • 带有可选的<version>:如果没有为报告插件指定版本,则版本由
    1. 在 pom 的build/plugins部分中搜索插件,
    2. 在 pom 的build/pluginManagement部分中搜索插件,
    3. 要求PluginVersionResolver获取回退版本并显示警告,因为它不推荐使用。

Maven 3 核心通过ReportingConverter组件将<reporting> POM 部分自动转换为maven-site-plugin配置。