Skip to content

Commit 76fdd87

Browse files
xuwei-kxerial
authored andcommitted
Update dependencies (#507)
1 parent 8060e0f commit 76fdd87

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ val buildSettings = Seq[Setting[_]](
55
organizationName := "MessagePack",
66
organizationHomepage := Some(new URL("http://msgpack.org/")),
77
description := "MessagePack for Java",
8-
scalaVersion := "2.12.4",
8+
scalaVersion := "2.12.8",
99
logBuffered in Test := false,
1010
// msgpack-java should be a pure-java library, so remove Scala specific configurations
1111
autoScalaLibrary := false,
@@ -93,12 +93,12 @@ lazy val msgpackCore = Project(id = "msgpack-core", base = file("msgpack-core"))
9393
libraryDependencies ++= Seq(
9494
// msgpack-core should have no external dependencies
9595
junitInterface,
96-
"org.scalatest" %% "scalatest" % "3.0.3" % "test",
97-
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test",
96+
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
97+
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
9898
"org.xerial" %% "xerial-core" % "3.6.0" % "test",
9999
"org.msgpack" % "msgpack" % "0.6.12" % "test",
100-
"commons-codec" % "commons-codec" % "1.10" % "test",
101-
"com.typesafe.akka" %% "akka-actor" % "2.5.7" % "test"
100+
"commons-codec" % "commons-codec" % "1.12" % "test",
101+
"com.typesafe.akka" %% "akka-actor" % "2.5.23" % "test"
102102
)
103103
)
104104

@@ -115,7 +115,7 @@ lazy val msgpackJackson =
115115
"org.msgpack.jackson.dataformat"
116116
),
117117
libraryDependencies ++= Seq(
118-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9",
118+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9.1",
119119
junitInterface,
120120
"org.apache.commons" % "commons-math3" % "3.6.1" % "test"
121121
),

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sbt.version=1.0.4
1+
sbt.version=1.2.8
22

project/plugins.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.7")
2-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
3-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
1+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11")
2+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.5")
3+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")
44
addSbtPlugin("com.github.sbt" % "sbt-findbugs" % "2.0.0")
55
addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.0.3")
6-
addSbtPlugin("org.xerial.sbt" % "sbt-jcheckstyle" % "0.2.0")
7-
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.2")
8-
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0")
9-
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.4.0")
6+
addSbtPlugin("org.xerial.sbt" % "sbt-jcheckstyle" % "0.2.1")
7+
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.5")
8+
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.3")
9+
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
1010

1111
scalacOptions ++= Seq("-deprecation", "-feature")

0 commit comments

Comments
 (0)