Skip to content

Commit

Permalink
Update scalatest-flatspec, ... to 3.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Feb 1, 2025
1 parent 964ff96 commit 0e6625e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ excludeLintKeys in Global ++= Set(ideSkipProject)
val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq(
organization := "com.softwaremill.quicklens",
updateDocs := UpdateVersionInDocs(sLog.value, organization.value, version.value, List(file("README.md"))),
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked"), // useful for debugging macros: "-Ycheck:all", "-Xcheck-macros"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-unchecked"
), // useful for debugging macros: "-Ycheck:all", "-Xcheck-macros"
ideSkipProject := (scalaVersion.value != scalaIdeaVersion)
)

Expand Down Expand Up @@ -67,7 +71,7 @@ lazy val quicklens = (projectMatrix in file("quicklens"))
libraryDependencies ++= compilerLibrary(scalaVersion.value),
versionSpecificScalaSources,
libraryDependencies ++= Seq("flatspec", "shouldmatchers").map(m =>
"org.scalatest" %%% s"scalatest-$m" % "3.2.18" % Test
"org.scalatest" %%% s"scalatest-$m" % "3.2.19" % Test
)
)
.jvmPlatform(
Expand All @@ -77,5 +81,5 @@ lazy val quicklens = (projectMatrix in file("quicklens"))
scalaVersions = List(scala212, scala213, scala3)
)
.nativePlatform(
scalaVersions = List(scala212, scala213, scala3),
scalaVersions = List(scala212, scala213, scala3)
)

0 comments on commit 0e6625e

Please sign in to comment.