From 0e6625ed2237ce51f6970da3707b2e88ce3b4b77 Mon Sep 17 00:00:00 2001 From: scala-steward Date: Sat, 1 Feb 2025 00:09:28 +0000 Subject: [PATCH] Update scalatest-flatspec, ... to 3.2.19 --- build.sbt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 9490d53..7e990e9 100644 --- a/build.sbt +++ b/build.sbt @@ -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) ) @@ -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( @@ -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) )