Skip to content

Commit

Permalink
Merge pull request #346 from playframework/mergify/bp/9.0.x/pr-345
Browse files Browse the repository at this point in the history
[9.0.x] Upgrade sbt + Scala (backport #345) by @mkurz
  • Loading branch information
mkurz authored Oct 8, 2024
2 parents 3377093 + d2e076a commit 0b213ea
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import sbt._

object Dependencies {
// scalaVersion needs to be kept in sync with ci
val Scala213 = "2.13.14"
val Scala3 = "3.3.3"
val Scala213 = "2.13.15"
val Scala3 = "3.3.4"
val ScalaVersions = Seq(Scala213, Scala3)

val PlayVersion = sys.props.getOrElse("play.version", sys.env.getOrElse("PLAY_VERSION", "2.9.5"))
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2
4 changes: 2 additions & 2 deletions samples/compile-timeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ThisBuild / dynverVTagPrefix := false

ThisBuild / dynverSonatypeSnapshots := true

scalaVersion := "2.13.14"
scalaVersion := "2.13.15"

crossScalaVersions := Seq("2.13.14", "3.3.3")
crossScalaVersions := Seq("2.13.15", "3.3.4")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer" % version.value,
Expand Down
2 changes: 1 addition & 1 deletion samples/compile-timeDI/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2
4 changes: 2 additions & 2 deletions samples/runtimeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ThisBuild / dynverVTagPrefix := false

ThisBuild / dynverSonatypeSnapshots := true

scalaVersion := "2.13.14"
scalaVersion := "2.13.15"

crossScalaVersions := Seq("2.13.14", "3.3.3")
crossScalaVersions := Seq("2.13.15", "3.3.4")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer-guice" % version.value,
Expand Down
2 changes: 1 addition & 1 deletion samples/runtimeDI/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2

0 comments on commit 0b213ea

Please sign in to comment.