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

Updates scalatest and scalacheck versions #117

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ object MyBuild extends Build {
settings = buildSettings ++ Seq(
scalacOptions ++= Seq("-optimise"),
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-reflect" % _),
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test",
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.1" % "test",
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.2" % "test",
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.11.3" % "test",
conflictWarning in ThisBuild := ConflictWarning.disable,
parallelExecution in Test := false, // hello, reflection sync!!
run <<= run in Compile in sandbox, // http://www.scala-sbt.org/release/docs/Detailed-Topics/Tasks
Expand Down Expand Up @@ -191,7 +191,7 @@ object MyBuild extends Build {
settings = buildSettings ++ Seq(
sourceDirectory in Compile <<= baseDirectory(root => root),
sourceDirectory in Test <<= baseDirectory(root => root),
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1",
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.2",
parallelExecution in Test := false,
// scalacOptions ++= Seq()
// scalacOptions ++= Seq("-Xlog-implicits")
Expand Down