diff --git a/plugin/src/sbt-test/play-soap/incremental-compilation/build.sbt b/plugin/src/sbt-test/play-soap/incremental-compilation/build.sbt index f0d21a8f..277564ce 100644 --- a/plugin/src/sbt-test/play-soap/incremental-compilation/build.sbt +++ b/plugin/src/sbt-test/play-soap/incremental-compilation/build.sbt @@ -4,7 +4,7 @@ scalaVersion := sys.props("scala.version") crossScalaVersions := sys.props("scala.crossVersions").split(",").toSeq -libraryDependencies += "com.typesafe.play" %% "play" % play.core.PlayVersion.current +libraryDependencies += "org.playframework" %% "play" % play.core.PlayVersion.current InputKey[Unit]("contains") := { val args = Def.spaceDelimited(" ").parsed diff --git a/plugin/src/sbt-test/play-soap/multiple-ports/build.sbt b/plugin/src/sbt-test/play-soap/multiple-ports/build.sbt index f808e313..3fd8b2fd 100644 --- a/plugin/src/sbt-test/play-soap/multiple-ports/build.sbt +++ b/plugin/src/sbt-test/play-soap/multiple-ports/build.sbt @@ -4,4 +4,4 @@ scalaVersion := sys.props("scala.version") crossScalaVersions := sys.props("scala.crossVersions").split(",").toSeq -libraryDependencies += "com.typesafe.play" %% "play" % play.core.PlayVersion.current +libraryDependencies += "org.playframework" %% "play" % play.core.PlayVersion.current diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 41b806b4..103d18cb 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -13,16 +13,16 @@ object Dependencies { object Versions { val CXF = "4.0.3" - val Play = "2.9.0" + val Play = "3.0.0" } val `play-client` = libraryDependencies ++= Seq( - "com.typesafe.play" %% "play" % Versions.Play % Provided, + "org.playframework" %% "play" % Versions.Play % Provided, "org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF % Provided, "org.apache.cxf" % "cxf-rt-transports-http-hc" % Versions.CXF % Provided, "org.apache.cxf" % "cxf-rt-transports-http" % Versions.CXF % Test, "org.apache.cxf" % "cxf-rt-transports-http-jetty" % Versions.CXF % Test, - "com.typesafe.play" %% "play-specs2" % Versions.Play % Test + "org.playframework" %% "play-specs2" % Versions.Play % Test ) val plugin = libraryDependencies ++= Seq( @@ -38,7 +38,7 @@ object Dependencies { val `test-java` = libraryDependencies ++= Seq( "org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF % Test, "org.apache.cxf" % "cxf-rt-transports-http-hc5" % Versions.CXF % Test, - "com.typesafe.play" %% "play" % Versions.Play % Test, // TODO: remove + "org.playframework" %% "play" % Versions.Play % Test, // TODO: remove "net.aichler" % "jupiter-interface" % jupiterVersion.value % Test, "org.testcontainers" % "junit-jupiter" % "1.19.1" % Test, "org.assertj" % "assertj-core" % "3.24.2" % Test @@ -47,7 +47,7 @@ object Dependencies { val `test-scala` = libraryDependencies ++= Seq( "org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF % Test, "org.apache.cxf" % "cxf-rt-transports-http-hc5" % Versions.CXF % Test, - "com.typesafe.play" %% "play" % Versions.Play % Test, // TODO: remove + "org.playframework" %% "play" % Versions.Play % Test, // TODO: remove "com.dimafeng" %% "testcontainers-scala" % "0.41.0" % Test, "org.scalatest" %% "scalatest" % "3.2.17" % Test, )