sbt-findbugs icon indicating copy to clipboard operation
sbt-findbugs copied to clipboard

FindBugs static analysis plugin for sbt.

Results 9 sbt-findbugs issues
Sort by recently updated
recently updated
newest added

Given the poor handling of the recent security incident (https://arstechnica.com/information-technology/2021/09/travis-ci-flaw-exposed-secrets-for-thousands-of-open-source-projects/) I'm suspending Travis CI integration indefinitely. Let's move on to GitHub Actions.

### Expected vs Actual Behaviour When I try to put > findbugsReportType := Some(FindbugsReportType.FancyHtml) in `build.sbt` Instead it... Complains "Cannot resolve symbol FindbugsReportType" Solution Show full working examples of what...

### Expected vs Actual Behaviour It should generate HTML output for a report. Instead it crashes. Generating the XML works fine though and I can render the XML to HTML...

In order to add the FindSecurityBugs plugin to our build, we needed to have access to FindBugs's plugin mechanism. This pull requests gives this access. Here's a usage example: ```...

The README.md file contains this section: _findbugsReportType Description: Optionally selects the output format for the FindBugs report. Accepts: Some(FindbugsReportType.{Xml, Html, PlainHtml, FancyHtml, FancyHistHtml, Emacs, Xdoc}) Default: Some(FindbugsReportType.Xml)_ But it seems...

Is there any work underway to customise the findbugs rules for Scala? I've installed `findbugs4sbt` but the core findbugs rules produce lots of false positives around class & method naming...

While findbugs code has a good base set of rules, most of Findbug's bug patterns are defined in `findbugs-contrib`. It looks to me like `findbugs4sbt` doesn't include `findbugs-contrib` by default....

I am currently unsure of what can be done, suggestions ? http://findbugs.sourceforge.net/manual/anttask.html#d0e1367

Adding findbugs4sbt and configured with ReportType.Html does not generate a Html report. The play-consoles displays: [play-findbugs4sbt] $ findbugs:findbugsReportType [info] Some(-html) The output directory (target/scala-2.10/findbugs/) has only the file "findbugs.xml" For...