Skip to content

Commit

Permalink
Play 2.9 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Sep 18, 2023
1 parent 28858f7 commit 8e80dfd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ object Dependencies {
val Scala3 = "3.3.1"
val ScalaVersions = Seq(Scala213, Scala3)

val PlayVersion = sys.props.getOrElse("play.version", sys.env.getOrElse("PLAY_VERSION", "2.9.0-M7"))
val PlayVersion = sys.props.getOrElse("play.version", sys.env.getOrElse("PLAY_VERSION", "2.9.0-RC2"))
}
2 changes: 1 addition & 1 deletion samples/compile-timeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crossScalaVersions := Seq("2.13.12", "3.3.1")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer" % version.value,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0-M6" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0-RC2" % Test
)

lazy val root = (project in file(".")).enablePlugins(PlayScala)
Expand Down
2 changes: 1 addition & 1 deletion samples/compile-timeDI/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % sys.env.getOrElse("PLAY_VERSION", "2.9.0-M7"))
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % sys.env.getOrElse("PLAY_VERSION", "2.9.0-RC2"))
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
2 changes: 1 addition & 1 deletion samples/runtimeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crossScalaVersions := Seq("2.13.12", "3.3.1")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer-guice" % version.value,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0-M6" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.0-RC2" % Test
)

lazy val root = (project in file(".")).enablePlugins(PlayJava)
Expand Down
2 changes: 1 addition & 1 deletion samples/runtimeDI/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % sys.env.getOrElse("PLAY_VERSION", "2.9.0-M7"))
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % sys.env.getOrElse("PLAY_VERSION", "2.9.0-RC2"))
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")

0 comments on commit 8e80dfd

Please sign in to comment.