Skip to content

Commit 88722a4

Browse files
authored
Merge pull request #430 from xuwei-k/update-libs
update test library dependencies
2 parents 7a2a367 + a907865 commit 88722a4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.sbt

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ val buildSettings = findbugsSettings ++ jacoco.settings ++ osgiSettings ++ Seq[S
66
organizationName := "MessagePack",
77
organizationHomepage := Some(new URL("http://msgpack.org/")),
88
description := "MessagePack for Java",
9-
scalaVersion := "2.11.7",
9+
scalaVersion := "2.11.11",
1010
logBuffered in Test := false,
1111
autoScalaLibrary := false,
1212
crossPaths := false,
@@ -91,12 +91,12 @@ lazy val msgpackCore = Project(id = "msgpack-core", base = file("msgpack-core"))
9191
libraryDependencies ++= Seq(
9292
// msgpack-core should have no external dependencies
9393
junitInterface,
94-
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
95-
"org.scalacheck" %% "scalacheck" % "1.12.2" % "test",
96-
"org.xerial" % "xerial-core" % "3.3.6" % "test",
97-
"org.msgpack" % "msgpack" % "0.6.11" % "test",
94+
"org.scalatest" %% "scalatest" % "3.0.3" % "test",
95+
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test",
96+
"org.xerial" %% "xerial-core" % "3.6.0" % "test",
97+
"org.msgpack" % "msgpack" % "0.6.12" % "test",
9898
"commons-codec" % "commons-codec" % "1.10" % "test",
99-
"com.typesafe.akka" %% "akka-actor" % "2.3.9" % "test"
99+
"com.typesafe.akka" %% "akka-actor" % "2.3.16" % "test"
100100
)
101101
)
102102

@@ -113,7 +113,7 @@ lazy val msgpackJackson = Project(id = "msgpack-jackson", base = file("msgpack-j
113113
libraryDependencies ++= Seq(
114114
"com.fasterxml.jackson.core" % "jackson-databind" % "2.7.1",
115115
junitInterface,
116-
"org.apache.commons" % "commons-math3" % "3.4.1" % "test"
116+
"org.apache.commons" % "commons-math3" % "3.6.1" % "test"
117117
),
118118
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
119119
).dependsOn(msgpackCore)

0 commit comments

Comments
 (0)