Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Update scalatest to 3.2.15 #877

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ libraryDependencies ++= List(
"org.http4s" %% "http4s-dsl" % http4s % Test,
"org.mockito" %% "mockito-scala" % "1.16.37" % Test,
"org.scalacheck" %% "scalacheck" % "1.15.4" % Test,
"org.scalatest" %% "scalatest" % "3.2.9" % Test,
"org.scalatest" %% "scalatest" % "3.2.15" % Test,
"org.scalatestplus" %% "mockito-1-10" % "3.1.0.0" % Test,
"org.scalatestplus" %% "scalacheck-1-14" % "3.2.2.0" % Test,
"com.softwaremill.diffx" %% "diffx-scalatest" % "0.4.5" % Test,
Expand Down
2 changes: 1 addition & 1 deletion examples/sbt/multi-module/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val baseSettings = Seq(
scalaVersion := "2.12.8",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.9" % "test",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.15" % "test",
scapegoatVersion in ThisBuild := "1.3.9"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/sbt/single-module/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name := "sbt-single-module"
scalaVersion := "2.12.8"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.9" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.15" % "test"
scapegoatVersion in ThisBuild := "1.3.9"
2 changes: 1 addition & 1 deletion project/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ libraryDependencies ++= Seq(
"com.sksamuel.scapegoat" % s"scalac-scapegoat-plugin_${scalaVersion.value}" % "1.4.8",
"com.beautiful-scala" %% "scalastyle" % "1.5.0",
"org.scalameta" %% "scalameta" % "4.4.18",
"org.scalatest" %% "scalatest" % "3.2.9" % Test
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)

// Adding a resolver to the Artima maven repo, so sbt can download the Artima SuperSafe sbt plugin
Expand Down