gpt4 book ai didi

maven - 限制要由 Maven 中的 Findbugs 分析的类

转载 作者:行者123 更新时间:2023-12-01 07:47:33 25 4
gpt4 key购买 nike

如何限制仅对某些包进行分析的类。在一个模块中,我不希望为某些包运行 Maven 的 findbugs。我怎样才能排除他们。 Maven的Findbugs有没有办法指定要淘汰的packges

最佳答案

请引用- http://mojo.codehaus.org/findbugs-maven-plugin/usage.html

使用 mvn site 而不是 mvn findbugs:findbugs

你需要在configuration标签下使用include exclude filter files或者onlyAnalyze。

<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<excludeFilterFile>src/main/resources/findbugs-exclude.xml</excludeFilterFile>
<includeFilterFile>src/main/resources/findbugs-include.xml</includeFilterFile>
<onlyAnalyze>com.packagename.*</onlyAnalyze>
</configuration>
</plugin>
</plugins>

示例过滤器文件

<FindBugsFilter>
<Match>
<Package name="~com\.ly\..*"/>
</Match>

关于maven - 限制要由 Maven 中的 Findbugs 分析的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13559256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com