Skip to content

Commit

Permalink
Exclusion rule should also apply to non-lambda projects
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfurey committed Apr 16, 2024
1 parent 7abee1d commit e39c9ef
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ lazy val registration = project
logback,
"org.tpolecat" %% "doobie-h2" % doobieVersion % Test
),
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")
),
Debian / packageName := name.value,
version := projectVersion
)
Expand All @@ -174,6 +179,11 @@ lazy val notification = project
logback,
"com.amazonaws" % "aws-java-sdk-sqs" % awsSdkVersion
),
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")
),
Debian / packageName := name.value,
version := projectVersion
)
Expand All @@ -193,6 +203,11 @@ lazy val report = project
libraryDependencies ++= Seq(
logback
),
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")
),
Debian / packageName := name.value,
version := projectVersion
)
Expand Down

0 comments on commit e39c9ef

Please sign in to comment.