Skip to content

Commit

Permalink
Make MiMa happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Oct 6, 2023
1 parent 0efba3c commit 653bec3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,33 @@ lazy val mimaSettings = Seq(
.getOrElse(throw new Error("Unable to determine previous version"))
),
mimaBinaryIssueFilters ++= Seq(
ProblemFilters.exclude[IncompatibleMethTypeProblem]("play.api.libs.ws.ahc.cache.AhcHttpCache.calculateCurrentAge"),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.calculateFreshnessFromHeuristic"
),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.generateCachedResponse"
),
ProblemFilters.exclude[IncompatibleMethTypeProblem]("play.api.libs.ws.ahc.cache.AhcHttpCache.isCacheableExtension"),
ProblemFilters.exclude[IncompatibleMethTypeProblem]("play.api.libs.ws.ahc.cache.AhcHttpCache.serveAction"),
ProblemFilters.exclude[IncompatibleResultTypeProblem]("play.api.libs.ws.ahc.cache.AhcHttpCache.cachingAction"),
ProblemFilters.exclude[IncompatibleResultTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.calculateCurrentAge"
),
ProblemFilters.exclude[IncompatibleResultTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.calculateFreshnessLifetime"
),
ProblemFilters.exclude[IncompatibleResultTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.generateCacheRequest"
),
ProblemFilters.exclude[IncompatibleResultTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.generateOriginResponse"
),
ProblemFilters.exclude[IncompatibleResultTypeProblem](
"play.api.libs.ws.ahc.cache.AhcHttpCache.generateStoredResponse"
),
ProblemFilters.exclude[IncompatibleResultTypeProblem]("play.api.libs.ws.ahc.cache.AhcHttpCache.selectionAction"),
ProblemFilters.exclude[MissingTypesProblem]("play.api.libs.ws.ahc.cache.AhcHttpCache"),
)
)

Expand Down

0 comments on commit 653bec3

Please sign in to comment.