Skip to content

Commit

Permalink
Drop play 2.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdziuban committed Aug 6, 2024
1 parent 21e2a23 commit 07bb851
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions docs/implementations/play.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ The currently supported versions of Play are:

@PLAY_SUPPORTED_VERSIONS@

**Note:** Java 8 is only supported on Play 2.8.x

Play handlers will be of the shape `Params => play.api.mvc.Handler`

First let's rebuild our example routes.
Expand Down
3 changes: 1 addition & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ object Build {

val defaultPlayPlatforms = (_: PlayAxis.Value) => List(Platform.Jvm)
val defaultPlayScalaVersions = (axis: PlayAxis.Value) => (_: Platform) => axis match {
case PlayAxis.v2_8 | PlayAxis.v2_9 | PlayAxis.v3_0 => identity[Seq[String]] _
case PlayAxis.v2_9 | PlayAxis.v3_0 => identity[Seq[String]] _
}

lazy val playProj = LibAxesProj(PlayAxis.all)(
Expand Down Expand Up @@ -308,7 +308,6 @@ object Build {

val v3_0 = PAVal("3.0", "3.0.0", proj => version => Def.setting("org.playframework" %%% proj % version))
val v2_9 = PAVal("2.9", "2.9.0", proj => version => Def.setting("com.typesafe.play" %%% proj % version))
val v2_8 = PAVal("2.8", "2.8.20", proj => version => Def.setting("com.typesafe.play" %%% proj % version cross CrossVersion.for3Use2_13))

lazy val all = values.toList
}
Expand Down

0 comments on commit 07bb851

Please sign in to comment.