我们在pom.xml中有这个配置:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<excludeFilterFile>../findbugsExclude.xml</excludeFilterFile>
...
在findbugsExclude.xml
中,我们有Match
个排除标记,这在Eclipse中有效。但是当我提出Git PR时,CI中的拉取请求构建器作业会被触发,并且它也会报告这些被排除的包。 CI的目标是:
findbugs:findbugs
我不想改变现有的配置。如何排除我想要的包裹?他们中的大多数都有自动生成的代码。