当源文件夹中包含多个jar时,如何设置Ant任务以生成Findbugs报告?
我正在寻找从包含多个jar的文件夹输出花式HTML所需的ant任务的实例
答案 0 :(得分:1)
FindBugs Ant target以XML格式生成报告,然后通过标准Ant XSLT target应用FindBugs安装附带的一个XSLT转换。
答案 1 :(得分:1)
这个帖子已经有2年了,但也许有人会发现它很有用:
您可以轻松完成:
<class location="${src.dir}/test.jar" />
<class location="${src.dir2}/test2.jar" />
假设你有2个源路径,你应该在之前定义它们:
<sourcePath path="first source path" />
<sourcePath path="second source path" />