Jenkins 能以圖表方式顯示您類別檔案的 FindBugs 分析結果。 當這個選項啟用,而且您的建置有執行到 Maven 的 findbugs:findbugs Goal,Jenkins 就能提供有用的分析結果資訊,例如: 結果歷史趨勢、模組及套件統計、查看分析報告及警告的網頁等。

這個外掛程式需要 findbugs-maven-plugin 1.2 或是更新的版本。如果您的 pom.xml 裡有下列設定,那麼這個外掛程式就會自動挑出正確的結果檔:
<plugin>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>findbugs-maven-plugin</artifactId>
   <version>1.2</version>
   <configuration>
      <findbugsXmlOutput>true</findbugsXmlOutput>
      <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
      <xmlOutput>true</xmlOutput>
      [...]
   </configuration>
</plugin>