Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit ec048ed

Browse files
committed
Merge pull request #117 from phaller/topic/update-scalatest-scalacheck
Updates scalatest and scalacheck versions
2 parents 64ebb7b + 050b542 commit ec048ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ object MyBuild extends Build {
7373
settings = buildSettings ++ Seq(
7474
scalacOptions ++= Seq("-optimise"),
7575
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-reflect" % _),
76-
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test",
77-
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.1" % "test",
76+
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.2" % "test",
77+
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.11.3" % "test",
7878
conflictWarning in ThisBuild := ConflictWarning.disable,
7979
parallelExecution in Test := false, // hello, reflection sync!!
8080
run <<= run in Compile in sandbox, // http://www.scala-sbt.org/release/docs/Detailed-Topics/Tasks
@@ -191,7 +191,7 @@ object MyBuild extends Build {
191191
settings = buildSettings ++ Seq(
192192
sourceDirectory in Compile <<= baseDirectory(root => root),
193193
sourceDirectory in Test <<= baseDirectory(root => root),
194-
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1",
194+
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.2",
195195
parallelExecution in Test := false,
196196
// scalacOptions ++= Seq()
197197
// scalacOptions ++= Seq("-Xlog-implicits")

0 commit comments

Comments
 (0)