Skip to content

Commit

Permalink
Add exclusion rule to workaround play-json-extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfurey committed Apr 10, 2024
1 parent 538c175 commit 09c7b2f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ lazy val common = project
Test / testOptions += Tests.Argument(TestFrameworks.Specs2, "sequential", "true")
)

excludeDependencies ++= Seq(
// As of Play 3.0, groupId has changed to org.playframework; exclude transitive dependencies to the old artifacts
// Hopefully this workaround can be removed once play-json-extensions either updates to Play 3.0 or is merged into play-json
ExclusionRule(organization = "com.typesafe.play")
)

lazy val commonscheduledynamodb = project
.settings(LocalDynamoDBScheduleLambda.settings)
.settings(List(
Expand Down

0 comments on commit 09c7b2f

Please sign in to comment.