From 9f2d99acd439404e3329befb52c4da24934e6f78 Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Fri, 27 Feb 2015 07:44:04 +0900 Subject: [PATCH] update some dependencies --- project/Build.scala | 18 ++++++++++-------- project/plugins.sbt | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index fa800c3d7..6f2e36e85 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -157,19 +157,21 @@ object Build extends Build { object Dependencies { + val junitInterface = "com.novocode" % "junit-interface" % "0.11" % "test" + val testLib = Seq( - "org.scalatest" % "scalatest_2.11" % "2.2.0" % "test", - "org.scalacheck" % "scalacheck_2.11" % "1.11.4" % "test", - "org.xerial" % "xerial-core" % "3.3.0" % "test", - "org.msgpack" % "msgpack" % "0.6.9" % "test", - "com.novocode" % "junit-interface" % "0.10" % "test", - "commons-codec" % "commons-codec" % "1.9" % "test" + "org.scalatest" %% "scalatest" % "2.2.4" % "test", + "org.scalacheck" %% "scalacheck" % "1.12.2" % "test", + "org.xerial" % "xerial-core" % "3.3.5" % "test", + "org.msgpack" % "msgpack" % "0.6.11" % "test", + junitInterface, + "commons-codec" % "commons-codec" % "1.10" % "test" ) val jacksonLib = Seq( "com.fasterxml.jackson.core" % "jackson-databind" % "2.4.4", - "com.novocode" % "junit-interface" % "0.10" % "test", - "org.apache.commons" % "commons-math3" % "3.3" % "test" + junitInterface, + "org.apache.commons" % "commons-math3" % "3.4.1" % "test" ) } diff --git a/project/plugins.sbt b/project/plugins.sbt index 2ce2dad4c..eb6a52a1b 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -9,6 +9,6 @@ addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0") addSbtPlugin("de.johoop" % "findbugs4sbt" % "1.3.0") -addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.5") +addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.6") scalacOptions ++= Seq("-deprecation", "-feature")