如何从CI中的maven项目中的Findbug分析中排除包?

时间:2017-05-28 09:08:58

标签: java eclipse maven continuous-integration findbugs

我们在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

我不想改变现有的配置。如何排除我想要的包裹?他们中的大多数都有自动生成的代码。

0 个答案:

没有答案