diff --git a/build.sbt b/build.sbt index d6e7f20bfe..f5400cd438 100644 --- a/build.sbt +++ b/build.sbt @@ -1483,9 +1483,9 @@ lazy val play29Server: ProjectMatrix = (projectMatrix in file("server/play29-ser Seq.empty }), libraryDependencies ++= Seq( - "com.typesafe.play" %% "play-server" % Versions.play29Server, - "com.typesafe.play" %% "play" % Versions.play29Server, - "com.typesafe.play" %% "play-akka-http-server" % Versions.play29Server, + "org.playframework" %% "play-server" % Versions.play29Server, + "org.playframework" %% "play" % Versions.play29Server, + "org.playframework" %% "play-pekko-http-server" % Versions.play29Server, "com.softwaremill.sttp.shared" %% "akka" % Versions.sttpShared, "org.scala-lang.modules" %% "scala-collection-compat" % Versions.scalaCollectionCompat ) ++ diff --git a/project/Versions.scala b/project/Versions.scala index ca2d359957..ff53c0204d 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -45,7 +45,7 @@ object Versions { val playClient = "3.0.6" val playServer = "3.0.6" val play29Client = "2.2.11" - val play29Server = "2.9.7" + val play29Server = "3.0.7" val tethys = "0.29.5" val vertx = "4.5.14" val jsScalaJavaTime = "2.6.0"