Skip to content

Commit

Permalink
remove scala-collection-compat from Play 2.9 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dwickern committed Nov 1, 2023
1 parent 65f86a5 commit e3072f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ lazy val swagger = (projectMatrix in file("."))
.settings(
name := "swagger-play",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3",
"org.specs2" %% "specs2-core" % "4.6.0" % Test,
"org.specs2" %% "specs2-mock" % "4.6.0" % Test,
"org.specs2" %% "specs2-junit" % "4.6.0" % Test,
Expand All @@ -50,6 +49,7 @@ lazy val swagger = (projectMatrix in file("."))
_.settings(
moduleName := name.value + "2.7",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3",
"com.typesafe.play" %% "play" % "2.7.3",
"com.typesafe.play" %% "routes-compiler" % "2.7.3",
"com.typesafe.play" %% "play-test" % "2.7.3" % Test,
Expand All @@ -67,6 +67,7 @@ lazy val swagger = (projectMatrix in file("."))
_.settings(
moduleName := name.value + "2.8",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.3",
"com.typesafe.play" %% "play" % "2.8.0",
"com.typesafe.play" %% "routes-compiler" % "2.8.0",
"com.typesafe.play" %% "play-test" % "2.8.0" % Test,
Expand Down

0 comments on commit e3072f2

Please sign in to comment.