@@ -14,7 +14,11 @@ excludeLintKeys in Global ++= Set(ideSkipProject)
1414val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq (
1515 organization := " com.softwaremill.quicklens" ,
1616 updateDocs := UpdateVersionInDocs (sLog.value, organization.value, version.value, List (file(" README.md" ))),
17- scalacOptions ++= Seq (" -deprecation" , " -feature" , " -unchecked" ), // useful for debugging macros: "-Ycheck:all", "-Xcheck-macros"
17+ scalacOptions ++= Seq (
18+ " -deprecation" ,
19+ " -feature" ,
20+ " -unchecked"
21+ ), // useful for debugging macros: "-Ycheck:all", "-Xcheck-macros"
1822 ideSkipProject := (scalaVersion.value != scalaIdeaVersion)
1923)
2024
@@ -67,7 +71,7 @@ lazy val quicklens = (projectMatrix in file("quicklens"))
6771 libraryDependencies ++= compilerLibrary(scalaVersion.value),
6872 versionSpecificScalaSources,
6973 libraryDependencies ++= Seq (" flatspec" , " shouldmatchers" ).map(m =>
70- " org.scalatest" %%% s " scalatest- $m" % " 3.2.18 " % Test
74+ " org.scalatest" %%% s " scalatest- $m" % " 3.2.19 " % Test
7175 )
7276 )
7377 .jvmPlatform(
@@ -77,5 +81,5 @@ lazy val quicklens = (projectMatrix in file("quicklens"))
7781 scalaVersions = List (scala212, scala213, scala3)
7882 )
7983 .nativePlatform(
80- scalaVersions = List (scala212, scala213, scala3),
84+ scalaVersions = List (scala212, scala213, scala3)
8185 )
0 commit comments