aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 82d6c89..4d6cc26 100644
--- a/build.sbt
+++ b/build.sbt
@@ -40,6 +40,9 @@ seq(lsSettings :_*)
crossBuildingSettings
-libraryDependencies += "org.specs2" %% "specs2" % "2.3.13" % "test"
+libraryDependencies <+= scalaVersion {
+ case v if v startsWith "2.9." => "org.specs2" % "specs2_2.9.3" % "1.12.4.1" % "test"
+ case "2.10.2" => "org.specs2" %% "specs2" % "2.3.13" % "test"
+}
ScalariformSupport.formatSettings \ No newline at end of file