Skip to content

Commit

Permalink
Update scalatest to 3.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored and xuwei-k committed Jun 29, 2024
1 parent 862a000 commit 9312367
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lazy val jacocoPlugin = (project in file("."))
"org.scalaj" %% "scalaj-http" % "2.4.2",
"commons-codec" % "commons-codec" % "1.17.0",
"org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.3.202401111512-r",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.mockito" % "mockito-core" % "4.11.0" % Test
)

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/csv-report/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

Test / jacocoReportSettings := JacocoReportSettings()
.withFormats(
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/forked-integration/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test,it"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test,it"

val root = project.in(file(".")).configs(IntegrationTest)
scalaVersion := "2.12.17"
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/forked/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

Test / fork := true
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test,it"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test,it"

val root = project.in(file(".")).configs(IntegrationTest)
scalaVersion := "2.12.17"
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/integration-test/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test,it"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test,it"

val root = project.in(file(".")).configs(IntegrationTest)
scalaVersion := "2.12.17"
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/multi-build/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ organization := "com.example"
scalaVersion := "2.12.17"

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.18" % "test"
"org.scalatest" %% "scalatest" % "3.2.19" % "test"
)

lazy val common = project
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/report-settings/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

Test / jacocoReportSettings := JacocoReportSettings()
.withFormats(
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/simple-scoped/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

Test / jacocoReportSettings := JacocoReportSettings()
.withThresholds(
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

jacocoReportSettings := JacocoReportSettings()
.withThresholds(
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/source-settings/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

jacocoSourceSettings := JacocoSourceSettings(tabWidth = 4, fileEncoding = "ISO-8859-1")
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/unmanaged-resources/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

Compile / unmanagedResourceDirectories += sourceDirectory.value / "unmanaged"
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-jacoco/xml-report/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "com.navetas"
scalaVersion := "2.12.17"
scalacOptions ++= Seq("-deprecation", "-optimize", "-unchecked", "-Xlint", "-language:_")

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"

Test / jacocoReportSettings := JacocoReportSettings()
.withFormats(
Expand Down

0 comments on commit 9312367

Please sign in to comment.