Skip to content

Commit

Permalink
Update scalatest to 3.2.19 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Jun 25, 2024
1 parent a3c863a commit a6f2dff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ lazy val plugin = project
.enablePlugins(SbtPlugin)
.settings(
name := "sbt-jni",
libraryDependencies ++= Seq("org.ow2.asm" % "asm" % "9.7", "org.scalatest" %% "scalatest" % "3.2.18" % Test),
libraryDependencies ++= Seq("org.ow2.asm" % "asm" % "9.7", "org.scalatest" %% "scalatest" % "3.2.19" % Test),
// make project settings available to source
Compile / sourceGenerators += Def.task {
val src = s"""|/* Generated by sbt */
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/sbt-test/sbt-jni/overloads/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ivyLoggingLevel := UpdateLogging.Quiet
lazy val root = (project in file(".")).aggregate(core, native)

lazy val core = project
.settings(libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % Test)
.settings(libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test)
.settings(javah / target := (native / nativeCompile / sourceDirectory).value / "include")
.dependsOn(native % Runtime)

Expand Down
2 changes: 1 addition & 1 deletion plugin/src/sbt-test/sbt-jni/simple-cargo/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val root = (project in file(".")).aggregate(core, native)

lazy val core = project
.settings(
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test,
sbtJniCoreScope := Compile
)
.dependsOn(native % Runtime)
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/sbt-test/sbt-jni/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ivyLoggingLevel := UpdateLogging.Quiet
lazy val root = (project in file(".")).aggregate(core, native)

lazy val core = project
.settings(libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18" % Test)
.settings(libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test)
.settings(javah / target := (native / nativeCompile / sourceDirectory).value / "include")
.dependsOn(native % Runtime)

Expand Down

0 comments on commit a6f2dff

Please sign in to comment.