diff --git a/build.sbt b/build.sbt index 34c735c..8cc4337 100644 --- a/build.sbt +++ b/build.sbt @@ -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 ) diff --git a/src/sbt-test/sbt-jacoco/csv-report/build.sbt b/src/sbt-test/sbt-jacoco/csv-report/build.sbt index 32a4dbc..a324a5a 100644 --- a/src/sbt-test/sbt-jacoco/csv-report/build.sbt +++ b/src/sbt-test/sbt-jacoco/csv-report/build.sbt @@ -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( diff --git a/src/sbt-test/sbt-jacoco/forked-integration/build.sbt b/src/sbt-test/sbt-jacoco/forked-integration/build.sbt index 3f2cbaf..5b01786 100644 --- a/src/sbt-test/sbt-jacoco/forked-integration/build.sbt +++ b/src/sbt-test/sbt-jacoco/forked-integration/build.sbt @@ -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" diff --git a/src/sbt-test/sbt-jacoco/forked/build.sbt b/src/sbt-test/sbt-jacoco/forked/build.sbt index 6fa7ad4..a71d280 100644 --- a/src/sbt-test/sbt-jacoco/forked/build.sbt +++ b/src/sbt-test/sbt-jacoco/forked/build.sbt @@ -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 diff --git a/src/sbt-test/sbt-jacoco/integration-test-no-merge/build.sbt b/src/sbt-test/sbt-jacoco/integration-test-no-merge/build.sbt index 28cfe50..1208ad1 100644 --- a/src/sbt-test/sbt-jacoco/integration-test-no-merge/build.sbt +++ b/src/sbt-test/sbt-jacoco/integration-test-no-merge/build.sbt @@ -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" diff --git a/src/sbt-test/sbt-jacoco/integration-test/build.sbt b/src/sbt-test/sbt-jacoco/integration-test/build.sbt index 1eedfdf..62e2c83 100644 --- a/src/sbt-test/sbt-jacoco/integration-test/build.sbt +++ b/src/sbt-test/sbt-jacoco/integration-test/build.sbt @@ -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" diff --git a/src/sbt-test/sbt-jacoco/multi-build/build.sbt b/src/sbt-test/sbt-jacoco/multi-build/build.sbt index 222398c..61b85f1 100644 --- a/src/sbt-test/sbt-jacoco/multi-build/build.sbt +++ b/src/sbt-test/sbt-jacoco/multi-build/build.sbt @@ -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 diff --git a/src/sbt-test/sbt-jacoco/report-settings/build.sbt b/src/sbt-test/sbt-jacoco/report-settings/build.sbt index 6b1a7c8..b4ff4c3 100644 --- a/src/sbt-test/sbt-jacoco/report-settings/build.sbt +++ b/src/sbt-test/sbt-jacoco/report-settings/build.sbt @@ -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( diff --git a/src/sbt-test/sbt-jacoco/simple-scoped/build.sbt b/src/sbt-test/sbt-jacoco/simple-scoped/build.sbt index f2a8d67..2d4fd8c 100644 --- a/src/sbt-test/sbt-jacoco/simple-scoped/build.sbt +++ b/src/sbt-test/sbt-jacoco/simple-scoped/build.sbt @@ -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( diff --git a/src/sbt-test/sbt-jacoco/simple/build.sbt b/src/sbt-test/sbt-jacoco/simple/build.sbt index 3fa824d..90fb2e0 100644 --- a/src/sbt-test/sbt-jacoco/simple/build.sbt +++ b/src/sbt-test/sbt-jacoco/simple/build.sbt @@ -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( diff --git a/src/sbt-test/sbt-jacoco/source-settings/build.sbt b/src/sbt-test/sbt-jacoco/source-settings/build.sbt index f7ba62a..c4a819f 100644 --- a/src/sbt-test/sbt-jacoco/source-settings/build.sbt +++ b/src/sbt-test/sbt-jacoco/source-settings/build.sbt @@ -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") diff --git a/src/sbt-test/sbt-jacoco/unmanaged-resources/build.sbt b/src/sbt-test/sbt-jacoco/unmanaged-resources/build.sbt index 1aa6dcf..bd7d29d 100644 --- a/src/sbt-test/sbt-jacoco/unmanaged-resources/build.sbt +++ b/src/sbt-test/sbt-jacoco/unmanaged-resources/build.sbt @@ -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" diff --git a/src/sbt-test/sbt-jacoco/xml-report/build.sbt b/src/sbt-test/sbt-jacoco/xml-report/build.sbt index ca28b04..c861335 100644 --- a/src/sbt-test/sbt-jacoco/xml-report/build.sbt +++ b/src/sbt-test/sbt-jacoco/xml-report/build.sbt @@ -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(