Skip to content

Commit

Permalink
Downgrade play-json. (#664)
Browse files Browse the repository at this point in the history
Was updated to 3.x, but that is for Play 3 and we are still on 2.9.
Also pinned version 2.x in .scala-steward.conf.
  • Loading branch information
cptwunderlich authored Jan 30, 2024
1 parent f6e5713 commit 263ae1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
updates.ignore = [
{groupId = "com.typesafe.akka", artifactId = "akka-testkit"} // Must be the same version as pulled in by alpakka
]

updates.pin = [
{ groupId = "com.typesafe.play", artifactId="play-json", version = "2." }
]
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ object Dependencies {
) ++ testDependencies

val jsonPlay: Seq[ModuleID] = Seq(
"org.playframework" %% "play-json" % "3.0.2"
"com.typesafe.play" %% "play-json" % "2.10.4"
) ++ testDependencies

val jsonGson: Seq[ModuleID] = Seq(
Expand Down

0 comments on commit 263ae1b

Please sign in to comment.