Skip to content

Commit

Permalink
Update scala-library, scala-reflect to 2.12.20 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Sep 9, 2024
1 parent 68b55ce commit 7fb07ef
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lazy val buildInfoSettings: Seq[Setting[?]] = {

lazy val scala3Version = "3.3.3"
lazy val scala213Version = "2.13.14"
lazy val sbtPluginScalaVersion = "2.12.19"
lazy val sbtPluginScalaVersion = "2.12.20"

lazy val scalaVersions = Seq(
scala3Version,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import snapshot4s.BuildInfo.snapshot4sVersion

lazy val root = (project in file("."))
.settings(
scalaVersion := "3.3.1",
scalacOptions += "-Xsource:3",
crossScalaVersions := Seq("3.3.1", "2.12.19", "2.13.14"),
scalaVersion := "3.3.1",
scalacOptions += "-Xsource:3",
crossScalaVersions := Seq("3.3.1", "2.12.20", "2.13.14"),
libraryDependencies ++= Seq(
"com.siriusxm" %% "snapshot4s-weaver" % snapshot4sVersion % Test,
"com.siriusxm" %% "snapshot4s-scalatest" % snapshot4sVersion % Test,
Expand Down
6 changes: 3 additions & 3 deletions modules/plugin/src/sbt-test/sbt-snapshot4s/munit/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import snapshot4s.BuildInfo.snapshot4sVersion

lazy val root = (project in file("."))
.settings(
scalaVersion := "3.3.1",
crossScalaVersions := Seq("3.3.1", "2.12.19", "2.13.14"),
scalacOptions += "-Xsource:3",
scalaVersion := "3.3.1",
crossScalaVersions := Seq("3.3.1", "2.12.20", "2.13.14"),
scalacOptions += "-Xsource:3",
libraryDependencies += "com.siriusxm" %% "snapshot4s-munit" % snapshot4sVersion % Test
)
.enablePlugins(Snapshot4sPlugin)
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import snapshot4s.BuildInfo.snapshot4sVersion

lazy val scala3Version = "3.4.2"
lazy val scala213Version = "2.13.14"
lazy val scala212Version = "2.12.19"
lazy val scala212Version = "2.12.20"
lazy val scalaVersions = Seq(scala3Version, scala213Version, scala212Version)

lazy val core = (projectMatrix in file("core"))
.settings(
scalacOptions += "-Xsource:3",
scalacOptions += "-Xsource:3",
libraryDependencies += "com.siriusxm" %%% "snapshot4s-weaver" % snapshot4sVersion % Test
)
.jvmPlatform(scalaVersions = scalaVersions)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import snapshot4s.BuildInfo.snapshot4sVersion

lazy val root = (project in file("."))
.settings(
scalaVersion := "3.3.1",
scalacOptions += "-Xsource:3",
crossScalaVersions := Seq("3.3.1", "2.12.19", "2.13.14"),
scalaVersion := "3.3.1",
scalacOptions += "-Xsource:3",
crossScalaVersions := Seq("3.3.1", "2.12.20", "2.13.14"),
libraryDependencies ++= Seq(
"com.siriusxm" %% "snapshot4s-scalatest" % snapshot4sVersion % Test,
"org.scalatest" %% "scalatest" % "3.2.19" % Test
Expand Down
6 changes: 3 additions & 3 deletions modules/plugin/src/sbt-test/sbt-snapshot4s/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import snapshot4s.BuildInfo.snapshot4sVersion

lazy val root = (project in file("."))
.settings(
scalaVersion := "3.3.1",
scalacOptions += "-Xsource:3",
crossScalaVersions := Seq("3.3.1", "2.12.19", "2.13.14"),
scalaVersion := "3.3.1",
scalacOptions += "-Xsource:3",
crossScalaVersions := Seq("3.3.1", "2.12.20", "2.13.14"),
libraryDependencies += "com.siriusxm" %% "snapshot4s-weaver" % snapshot4sVersion % Test
)
.enablePlugins(Snapshot4sPlugin)

0 comments on commit 7fb07ef

Please sign in to comment.