我有gradle项目,我添加了findbugs步骤。生成带有报告的XML文件,但我不知道如何使用管道插件在jenkins中显示结果。
我安装了findbugs插件,但是我没有找到如何在管道脚本中使用它的说明。
如何在管道中使用findbugs插件或文档中如何在管道中使用findbugs?
答案 0 :(得分:4)
基于官方FindBugs Plugin页面,最近发布的版本增加了对Pipeline作业的支持:
发布4.62
Added support for workflow plug-in (Thanks to Antonio Muñiz and Manuel Recena for their PRs) Fixed links in detail page of trend reports (JENKINS-29900)
您应该能够在 Snippet Generator 中找到FindBugs step
,即:
step([$class: 'FindBugsPublisher ', ... ])