Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

play, play-specs2 3.0.2 (was 2.9.2) #435

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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("<file> <text>").parsed
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/sbt-test/play-soap/multiple-ports/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ object Dependencies {

object Versions {
val CXF = "4.0.4"
val Play = "2.9.2"
val Play = "3.0.2"
}

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(
Expand All @@ -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.7" % Test,
"org.assertj" % "assertj-core" % "3.25.3" % Test
Expand All @@ -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.3" % Test,
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
)
Expand Down
Loading