Skip to content

Commit

Permalink
Update to the latest Play 2.8.x (#1116)
Browse files Browse the repository at this point in the history
The play 2.8 branch is EOL by May 31 2024. MapRoulette need to use a newer version and the first step is to update to the latest 2.8 and then step to 2.9.

See here for more details <https://www.playframework.com/documentation/3.0.x/Migration29>. This is a step in concluding #1079.
  • Loading branch information
ljdelight authored May 18, 2024
1 parent ff2597c commit f6ae362
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ libraryDependencies ++= Seq(
"commons-codec" % "commons-codec" % "1.14",
"com.typesafe.play" %% "play-mailer" % "8.0.1",
"com.typesafe.play" %% "play-mailer-guice" % "8.0.1",
"com.typesafe.akka" %% "akka-cluster-tools" % "2.6.20",
"com.typesafe.akka" %% "akka-cluster-typed" % "2.6.20",
"com.typesafe.akka" %% "akka-slf4j" % "2.6.20",
"com.typesafe.akka" %% "akka-cluster-tools" % "2.6.21",
"com.typesafe.akka" %% "akka-cluster-typed" % "2.6.21",
"com.typesafe.akka" %% "akka-slf4j" % "2.6.21",
"net.debasishg" %% "redisclient" % "3.42",
"com.github.blemale" %% "scaffeine" % "5.2.1",
"com.github.tototoshi" %% "scala-csv" % "1.3.10"
Expand Down
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# https://github.com/sbt/sbt/releases
sbt.version=1.7.2
3 changes: 2 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ logLevel := Level.Warn

addDependencyTreePlugin

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.18")
// https://github.com/playframework/playframework/releases
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.21")

addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.2")

Expand Down

0 comments on commit f6ae362

Please sign in to comment.