Skip to content

Commit

Permalink
Remove MiMa exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
satabin committed Jul 4, 2024
1 parent 2c13a12 commit 108b97e
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,7 @@ lazy val core = crossProject(JVMPlatform)
.in(file("core"))
.settings(commonSettings)
.settings(
name := "fs2-queues-core",
// TODO: Remove once 0.2 is published
mimaBinaryIssueFilters ++= List(
ProblemFilters.exclude[ReversedMissingMethodProblem]("com.commercetools.queue.Message.rawPayload"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("com.commercetools.queue.QueueAdministration.configuration"),
ProblemFilters.exclude[DirectMissingMethodProblem]("com.commercetools.queue.QueuePusher.push"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("com.commercetools.queue.QueuePusher.push"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("com.commercetools.queue.QueueClient.statistics")
)
name := "fs2-queues-core"
)

lazy val testkit = crossProject(JVMPlatform)
Expand Down Expand Up @@ -93,10 +85,6 @@ lazy val otel4s = crossProject(JVMPlatform)
description := "Support for metrics and tracing using otel4s",
libraryDependencies ++= List(
"org.typelevel" %%% "otel4s-core" % "0.7.0"
),
// TODO: Remove once 0.2 is published
mimaBinaryIssueFilters ++= List(
ProblemFilters.exclude[DirectMissingMethodProblem]("com.commercetools.queue.otel4s.MeasuringQueuePusher.push")
)
)
.dependsOn(core % "compile->compile;test->test")
Expand All @@ -121,11 +109,6 @@ lazy val azureServiceBus = crossProject(JVMPlatform)
name := "fs2-queues-azure-service-bus",
libraryDependencies ++= List(
"com.azure" % "azure-messaging-servicebus" % "7.17.0"
),
// TODO: Remove once 0.2 is published
mimaBinaryIssueFilters ++= List(
ProblemFilters.exclude[DirectMissingMethodProblem](
"com.commercetools.queue.azure.servicebus.ServiceBusPusher.push")
)
)
.dependsOn(core, testkit % Test)
Expand All @@ -138,11 +121,6 @@ lazy val awsSQS = crossProject(JVMPlatform)
name := "fs2-queues-aws-sqs",
libraryDependencies ++= List(
"software.amazon.awssdk" % "sqs" % "2.25.50"
),
// TODO: Remove once 0.2 is published
mimaBinaryIssueFilters ++= List(
ProblemFilters.exclude[DirectMissingMethodProblem]("com.commercetools.queue.aws.sqs.SQSMessageContext.this"),
ProblemFilters.exclude[DirectMissingMethodProblem]("com.commercetools.queue.aws.sqs.SQSPusher.push")
)
)
.dependsOn(core)
Expand Down

0 comments on commit 108b97e

Please sign in to comment.