This SBT plug-in enables you to analyze your (Java) code with the help of the great FindBugs tool. It defines a findbugs
sbt action for that purpose.
Version 1.4.0 of this plug-in is available for SBT 0.13.x.
findbugs4sbt is hosted at the sbt Community Repository. This repository is automatically available from within SBT. This means that you just have to add findbugs4sbt as a plug-in to your project (see the next section).
If you want to go bleeding edge, you can also:
git clone https://github.com/sbt/findbugs4sbt.git
cd findbugs4sbt
sbt publish-local
Add the following to your project's build.sbt
file:
import de.johoop.findbugs4sbt.FindBugs._
findbugsSettings
Also, you have to add the plugin dependency to your project's ./project/plugins.sbt
or the global .sbt/plugins/build.sbt
:
addSbtPlugin("de.johoop" % "findbugs4sbt" % "1.4.0")
The old settings specified below are still mostly valid, but they're now specified using the settings system of SBT 0.13.
You can execute findbugs
to analyze your project and produce a report.
You can execute findbugs-check
to analyze your project, produce an XML report and automatically break the build if issues are found.
You can also execute findbugs-gui
to display Findbugs GUI. If you previously generated a report, it will be automatically loaded.
Just use Scala inline XML for the setting, for example:
findbugsIncludeFilters := Some(<FindBugsFilter>
<Match>
<Class name="de.johoop.Meep" />
</Match>
</FindBugsFilter>)
You can also read the filter settings from files in a more conventional way:
findbugsIncludeFilters := Some(scala.xml.XML.loadFile(baseDirectory.value / "findbugs-include-filters.xml"))
Or, when your configuration is zipped and previously published to a local repo:
findbugsIncludeFilters := {
val configFiles = update.value.select(module = moduleFilter(name = "velvetant-sonar"))
val configFile = configFiles.headOption flatMap { zippedFile =>
IO.unzip(zippedFile, target.value / "rules") find (_.name contains "velvetant-sonar-findbugs.xml")
}
configFile map scala.xml.XML.loadFile orElse sys.error("unable to find config file in update report")
}
(see also the FindBugs documentation)
- Description: Optionally selects the output format for the FindBugs report.
- Accepts:
Some(ReportType.{Xml, Html, PlainHtml, FancyHtml, FancyHistHtml, Emacs, Xdoc})
- Default:
Some(ReportType.Xml)
- Description: Target path of the report file to generate (optional).
- Accepts: any legal file path
- Default:
Some(crossTarget.value / "findbugs" / "report.xml")
- Description: Suppress reporting of bugs based on priority.
- Accepts:
Priority.{Relaxed, Low, Medium, High}
- Default:
Priority.Medium
- Description: Decide how much effort to put into analysis.
- Accepts:
Effort.{Minimum, Default, Maximum}
- Default:
Effort.Default
- Description: Optionally, define which packages/classes should be analyzed.
- Accepts: An option containing a
List[String]
of packages and classes. - Default:
None
(meaning: analyze everything).
- Description: Maximum amount of memory to allow for FindBugs (in MB).
- Accepts: any reasonable amount of memory as an integer value
- Default:
1024
- Description: Whether FindBugs should analyze nested archives or not.
- Accepts:
true
andfalse
- Default:
true
- Description: Whether the reported bug instances should be sorted by class name or not.
- Accepts:
true
andfalse
- Default:
false
- Description: Optional filter file XML content defining which bug instances to include in the static analysis.
- Accepts:
None
andOption[Node]
- Default:
None
(no include filters).
- Description: Optional filter file XML content defining which bug instances to exclude in the static analysis.
- Accepts:
None
andSome[Node]
- Default:
None
(no exclude filters).
- Description: The path to the classes to be analyzed.
- Accepts: any
sbt.Path
- Default:
Seq(classDirectory in Compile value)
Thanks to @asflierl and @anishathalye for their contributions!
Copyright (c) 2011 - 2014 Joachim Hofer & contributors
All rights reserved.
This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html