aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: 87eeaf37448a3b6322c7e17b59d1a59c86faa364 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
sbtPlugin := true

scalacOptions := Seq("-deprecation", "-encoding", "utf8")

libraryDependencies <+= scalaVersion {
  case v if v startsWith "2.9." => "org.specs2" % "specs2_2.9.3" % "1.12.4.1" % "test"
  case "2.10.4" => "org.specs2" %% "specs2" % "2.3.13" % "test"
}

ScalariformSupport.formatSettings