config/build.sbt

19 lines
469 B
Plaintext
Raw Normal View History

2011-11-09 13:07:21 +08:00
import de.johoop.findbugs4sbt.FindBugs._
import de.johoop.findbugs4sbt.ReportType
2011-11-08 04:31:23 +08:00
name := "config"
version := "0.1"
libraryDependencies += "net.liftweb" %% "lift-json" % "2.4-SNAPSHOT" % "test"
libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test"
externalResolvers += "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/"
2011-11-09 13:07:21 +08:00
seq(findbugsSettings : _*)
findbugsReportType := ReportType.Html
findbugsReportName := "findbugs.html"