summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index c279897..fe859e6 100644
--- a/build.sbt
+++ b/build.sbt
@@ -18,20 +18,21 @@ scalaVersion := "2.10.3"
scalacOptions <<= scalaVersion map {
case "2.9.3" => Seq("-unchecked", "-deprecation", "-encoding", "utf8")
- case x if x startsWith "2.10" => Seq("-feature", "-language:implicitConversions", "-unchecked", "-deprecation", "-encoding", "utf8")
+ case _ => Seq("-feature", "-language:implicitConversions", "-unchecked", "-deprecation", "-encoding", "utf8")
}
resolvers += Opts.resolver.sonatypeReleases
-libraryDependencies <++= scalaVersion { sv =>
+libraryDependencies ++= {
Seq("org.parboiled" %% "parboiled-scala" % "1.1.5" % "compile") ++
- (sv match {
+ (scalaVersion.value match {
case "2.9.3" =>
Seq(
"org.specs2" %% "specs2" % "1.12.4.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test"
)
- case x if x startsWith "2.10" =>
+ // Scala 2.10 and Scala 2.11
+ case _ =>
Seq(
"org.specs2" %% "specs2" % "2.3.10" % "test",
"org.scalacheck" %% "scalacheck" % "1.11.3" % "test"