diff --git a/build.sbt b/build.sbt index 2645fb126..1821bf09c 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ val buildSettings = Seq[Setting[_]]( organizationName := "MessagePack", organizationHomepage := Some(new URL("http://msgpack.org/")), description := "MessagePack for Java", - scalaVersion := "2.12.4", + scalaVersion := "2.12.8", logBuffered in Test := false, // msgpack-java should be a pure-java library, so remove Scala specific configurations autoScalaLibrary := false, @@ -93,12 +93,12 @@ lazy val msgpackCore = Project(id = "msgpack-core", base = file("msgpack-core")) libraryDependencies ++= Seq( // msgpack-core should have no external dependencies junitInterface, - "org.scalatest" %% "scalatest" % "3.0.3" % "test", - "org.scalacheck" %% "scalacheck" % "1.13.5" % "test", + "org.scalatest" %% "scalatest" % "3.0.8" % "test", + "org.scalacheck" %% "scalacheck" % "1.14.0" % "test", "org.xerial" %% "xerial-core" % "3.6.0" % "test", "org.msgpack" % "msgpack" % "0.6.12" % "test", - "commons-codec" % "commons-codec" % "1.10" % "test", - "com.typesafe.akka" %% "akka-actor" % "2.5.7" % "test" + "commons-codec" % "commons-codec" % "1.12" % "test", + "com.typesafe.akka" %% "akka-actor" % "2.5.23" % "test" ) ) @@ -115,7 +115,7 @@ lazy val msgpackJackson = "org.msgpack.jackson.dataformat" ), libraryDependencies ++= Seq( - "com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9", + "com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9.1", junitInterface, "org.apache.commons" % "commons-math3" % "3.6.1" % "test" ), diff --git a/project/build.properties b/project/build.properties index cd928eac3..e2820dd8c 100755 --- a/project/build.properties +++ b/project/build.properties @@ -1,2 +1,2 @@ -sbt.version=1.0.4 +sbt.version=1.2.8 diff --git a/project/plugins.sbt b/project/plugins.sbt index a4fc6f318..647c13328 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,11 +1,11 @@ -addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.7") -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0") -addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0") +addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.5") +addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2") addSbtPlugin("com.github.sbt" % "sbt-findbugs" % "2.0.0") addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.0.3") -addSbtPlugin("org.xerial.sbt" % "sbt-jcheckstyle" % "0.2.0") -addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.2") -addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0") -addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.4.0") +addSbtPlugin("org.xerial.sbt" % "sbt-jcheckstyle" % "0.2.1") +addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.5") +addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.3") +addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1") scalacOptions ++= Seq("-deprecation", "-feature")