Skip to content

Commit

Permalink
Merge pull request #389 from mkurz/play-filters-helpers
Browse files Browse the repository at this point in the history
With Play 2.9 `filters-helpers` has a `play-` prefix
  • Loading branch information
mkurz authored Aug 21, 2023
2 parents 89571c4 + e2fc12e commit 19b8bc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val sbtPlayEbean = ProjectRef(Path.fileProperty("user.dir").getParentFile,

resolvers ++= DefaultOptions.resolvers(snapshot = true)

addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.9.0-M6"))
addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.9.0-M7"))

addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")

Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object Dependencies {
}

object Versions {
val play: String = "2.9.0-M6"
val play: String = "2.9.0-M7"
val ebean = "13.17.3"
val ebeanJakarta = s"$ebean-jakarta"
val typesafeConfig = "1.4.2"
Expand All @@ -28,7 +28,7 @@ object Dependencies {
"com.typesafe.play" %% "play-java-jdbc" % Versions.play,
"com.typesafe.play" %% "play-jdbc-evolutions" % Versions.play,
"com.typesafe.play" %% "play-guice" % Versions.play % Test,
"com.typesafe.play" %% "filters-helpers" % Versions.play % Test,
"com.typesafe.play" %% "play-filters-helpers" % Versions.play % Test,
"com.typesafe.play" %% "play-test" % Versions.play % Test,
("org.reflections" % "reflections" % "0.10.2")
.exclude("com.google.code.findbugs", "annotations")
Expand Down

0 comments on commit 19b8bc9

Please sign in to comment.