summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorMathias <mathias@spray.io>2016-09-15 12:04:44 +0200
committerMathias <mathias@spray.io>2016-09-15 12:04:44 +0200
commit30a8e9a4ab364b4121751d0b4cea2ea7ffa4caa3 (patch)
tree1f4dfd1e4ca3e760e1f74ad7607f22936004a360 /build.sbt
parent7277ddc103d345e2ca42d6f39a21bbe8c453049b (diff)
downloadspray-json-30a8e9a4ab364b4121751d0b4cea2ea7ffa4caa3.tar.gz
spray-json-30a8e9a4ab364b4121751d0b4cea2ea7ffa4caa3.tar.bz2
spray-json-30a8e9a4ab364b4121751d0b4cea2ea7ffa4caa3.zip
Upgrade to Scala 2.12.0-RC1 and latest specs2 and scalacheck versions
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 616c0a3..576ae1f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -21,9 +21,9 @@ scalacOptions ++= Seq("-feature", "-language:_", "-unchecked", "-deprecation", "
resolvers += Opts.resolver.sonatypeReleases
libraryDependencies ++= Seq(
- "org.specs2" %% "specs2-core" % "3.8.4" % "test",
- "org.specs2" %% "specs2-scalacheck" % "3.8.4" % "test",
- "org.scalacheck" %% "scalacheck" % "1.13.1" % "test"
+ "org.specs2" %% "specs2-core" % "3.8.5" % "test",
+ "org.specs2" %% "specs2-scalacheck" % "3.8.5" % "test",
+ "org.scalacheck" %% "scalacheck" % "1.13.2" % "test"
)
(scalacOptions in doc) ++= Seq("-doc-title", name.value + " " + version.value)
@@ -46,7 +46,7 @@ OsgiKeys.additionalHeaders := Map("-removeheaders" -> "Include-Resource,Private-
// publishing
///////////////
-crossScalaVersions := Seq("2.10.5", "2.11.7", "2.12.0-M5")
+crossScalaVersions := Seq("2.10.5", "2.11.8", "2.12.0-RC1")
scalaBinaryVersion <<= scalaVersion(sV => if (CrossVersion.isStable(sV)) CrossVersion.binaryScalaVersion(sV) else sV)