Skip to content

Commit 9f2d99a

Browse files
committed
update some dependencies
1 parent cf416db commit 9f2d99a

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

project/Build.scala

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,19 +157,21 @@ object Build extends Build {
157157

158158
object Dependencies {
159159

160+
val junitInterface = "com.novocode" % "junit-interface" % "0.11" % "test"
161+
160162
val testLib = Seq(
161-
"org.scalatest" % "scalatest_2.11" % "2.2.0" % "test",
162-
"org.scalacheck" % "scalacheck_2.11" % "1.11.4" % "test",
163-
"org.xerial" % "xerial-core" % "3.3.0" % "test",
164-
"org.msgpack" % "msgpack" % "0.6.9" % "test",
165-
"com.novocode" % "junit-interface" % "0.10" % "test",
166-
"commons-codec" % "commons-codec" % "1.9" % "test"
163+
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
164+
"org.scalacheck" %% "scalacheck" % "1.12.2" % "test",
165+
"org.xerial" % "xerial-core" % "3.3.5" % "test",
166+
"org.msgpack" % "msgpack" % "0.6.11" % "test",
167+
junitInterface,
168+
"commons-codec" % "commons-codec" % "1.10" % "test"
167169
)
168170

169171
val jacksonLib = Seq(
170172
"com.fasterxml.jackson.core" % "jackson-databind" % "2.4.4",
171-
"com.novocode" % "junit-interface" % "0.10" % "test",
172-
"org.apache.commons" % "commons-math3" % "3.3" % "test"
173+
junitInterface,
174+
"org.apache.commons" % "commons-math3" % "3.4.1" % "test"
173175
)
174176
}
175177

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
99

1010
addSbtPlugin("de.johoop" % "findbugs4sbt" % "1.3.0")
1111

12-
addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.5")
12+
addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.6")
1313

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

0 commit comments

Comments
 (0)