Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.softwaremill.UpdateVersionInDocs
val scala211 = "2.11.12"
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val scala3 = "3.3.4"
val scala3 = "3.3.6"

val scalaIdeaVersion = scala3 // the version for which to import sources into intellij

Expand All @@ -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 @@ -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)
)
Loading