Skip to content

Commit

Permalink
Latest Scala versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Oct 8, 2024
1 parent 30fae85 commit 78b48ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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", "3.0.5"))
Expand Down
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(
"org.playframework" %% "play-mailer" % version.value,
Expand Down
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(
"org.playframework" %% "play-mailer-guice" % version.value,
Expand Down

0 comments on commit 78b48ff

Please sign in to comment.