add findbugs sbt plugin

This commit is contained in:
Havoc Pennington 2011-11-09 00:07:21 -05:00
parent 2facd09341
commit cd6bf42cdc
4 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
/.classpath
/.project
/.cache
/project
/bin
target/

View File

@ -1,3 +1,6 @@
import de.johoop.findbugs4sbt.FindBugs._
import de.johoop.findbugs4sbt.ReportType
name := "config"
version := "0.1"
@ -8,3 +11,8 @@ libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test"
externalResolvers += "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/"
seq(findbugsSettings : _*)
findbugsReportType := ReportType.Html
findbugsReportName := "findbugs.html"

1
project/build.properties Normal file
View File

@ -0,0 +1 @@
sbt.version=0.11.0

2
project/plugins.sbt Normal file
View File

@ -0,0 +1,2 @@
addSbtPlugin("de.johoop" % "findbugs4sbt" % "1.1.2")