summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorMathias <mathias@spray.io>2016-07-07 10:59:08 +0200
committerMathias <mathias@spray.io>2016-07-07 10:59:50 +0200
commit7277ddc103d345e2ca42d6f39a21bbe8c453049b (patch)
treee0516aeaabe511f4027173d5cf4efaa45526df0b /build.sbt
parent1f98f29bf1a5f2835321b45212515795a95c49b6 (diff)
downloadspray-json-7277ddc103d345e2ca42d6f39a21bbe8c453049b.tar.gz
spray-json-7277ddc103d345e2ca42d6f39a21bbe8c453049b.tar.bz2
spray-json-7277ddc103d345e2ca42d6f39a21bbe8c453049b.zip
Upgrade to Scala 2.11.8, 2.12.0-M5 and latest specs2 and scalacheck versions
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.sbt b/build.sbt
index 395c80f..616c0a3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -14,16 +14,16 @@ startYear := Some(2011)
licenses := Seq("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
-scalaVersion := "2.11.7"
+scalaVersion := "2.11.8"
scalacOptions ++= Seq("-feature", "-language:_", "-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += Opts.resolver.sonatypeReleases
libraryDependencies ++= Seq(
- "org.specs2" %% "specs2-core" % "3.7.1" % "test",
- "org.specs2" %% "specs2-scalacheck" % "3.7.1" % "test",
- "org.scalacheck" %% "scalacheck" % "1.12.5" % "test"
+ "org.specs2" %% "specs2-core" % "3.8.4" % "test",
+ "org.specs2" %% "specs2-scalacheck" % "3.8.4" % "test",
+ "org.scalacheck" %% "scalacheck" % "1.13.1" % "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-M3")
+crossScalaVersions := Seq("2.10.5", "2.11.7", "2.12.0-M5")
scalaBinaryVersion <<= scalaVersion(sV => if (CrossVersion.isStable(sV)) CrossVersion.binaryScalaVersion(sV) else sV)