解决方法
如评论中所述,但需要进一步说明(请参阅下面的第二种情况),您需要禁用/跳过POM中的插件,以禁用从默认父POM继承的行为(通过任何现有的父POM链).
但是,您需要从reports / plugins部分(而不是build / plugins部分)禁用它,如下所示:
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> <reportSets> <reportSet> <configuration> <skip>true</skip> </configuration> </reportSet> </reportSets> </plugin> <!-- any further custom report here --> </plugins> </reporting>
请注意skip元素设置为true.这将跳过项目信息部分的生成(依赖关系,关于,摘要等).在报告部分中,您可以添加任何自定义报告(javadoc,checkstyle等),这些报告将添加到项目报告部分的顶部项目文档根目录下.
设置以下内容不会跳过它(只是尝试重新检查其行为):
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build>
禁用默认“项目信息”部分时的另一个注意事项:您将不再生成index.html文件(来自默认的“关于”页面),这通常很烦人(我们总是需要index.html).
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> <reportSets> <reportSet> <reports> <report>index</report> </reports> </reportSet> </reportSets> </plugin> <!-- any further custom report here --> </plugins> </reporting>
这仍将创建“项目信息”部分,但仅提供“关于”页面,即来自POM的description元素的项目的一般描述.