gpt4 book ai didi

maven-2 - Maven 查找错误 :check - Output Summary Of Bugs

转载 作者:行者123 更新时间:2023-12-01 18:11:58 25 4
gpt4 key购买 nike

有人知道如何配置 maven findbugs 插件以将错误摘要输出到控制台(类似于 pmd 插件)?

目前 findbugs:check 只是打印出总共有多少个错误,我需要检查各个模块 target/findbugs 目录和每个 findbugs.xml 文件来修复问题。

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<xmlOutput>true</xmlOutput>
<xmlOutputDirectory>findbugsreports</xmlOutputDirectory>
<findbugsXmlOutput>true</findbugsXmlOutput>
<findbugsXmlOutputDirectory>target/site/findbugsreports</findbugsXmlOutputDirectory>
<debug>true</debug>
</configuration>
</plugin>

理想情况下,最好能在命令行上获得摘要报告。有什么想法吗?

最佳答案

我使用这个基于 maven-groovy-plugin 的 hack:

<plugin>
<groupId>org.codehaus.groovy.maven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.0-rc-5-SNAPSHOT</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
def file = new File("${project.build.directory}/findbugsXml.xml")
if (!file.exists()) {
fail("Findbugs XML report is absent: " + file.getPath())
}
def xml = new XmlParser().parse(file)
def bugs = xml.BugInstance
def total = bugs.size()
if (total &gt; 0) {
log.info("Total bugs: " + total)
for (i in 0..total-1) {
def bug = bugs[i]
log.info(
bug.LongMessage.text()
+ " " + bug.Class.'@classname'
+ " " + bug.Class.SourceLine.Message.text()
)
}
}
</source>
</configuration>
</execution>
</executions>
</plugin>

关于maven-2 - Maven 查找错误 :check - Output Summary Of Bugs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1263409/

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