From 653bec3804933d0584fe8cbdd078b05a14dff2d1 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Fri, 6 Oct 2023 13:27:33 +0200 Subject: [PATCH] Make MiMa happy --- build.sbt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/build.sbt b/build.sbt index 05cd7fc2..aea46f93 100644 --- a/build.sbt +++ b/build.sbt @@ -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"), ) )