SpotBugs Maven Plugin exclude a directory
我使用SpotBugs Maven插件进行静态分析,我想从检查中排除目录。查看目标文档,似乎不可能以这种方式配置插件。我还检查了 SpotBugs 筛选器文件的文档。spotbugs:check
在Apache Maven PMD插件中,这可以通过使用excludereRoots参数来完成:
<excludeRoots>
<excludeRoot>target</excludeRoot>
</excludeRoots>
是否可以从 SpotBugs 检查中排除某个目录?