Skip to content

Commit

Permalink
build: fix mima internal method error
Browse files Browse the repository at this point in the history
  • Loading branch information
ahjohannessen committed Mar 22, 2023
1 parent 98107e8 commit 25ff0ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ lazy val `fs2-core` = project
ProblemFilters.exclude[DirectAbstractMethodProblem]("scalapb.GeneratedFileObject.javaDescriptor"),
//
ProblemFilters.exclude[DirectMissingMethodProblem]("com.eventstore.dbclient.proto.shared.*"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("com.eventstore.dbclient.proto.streams.*")
ProblemFilters.exclude[ReversedMissingMethodProblem]("com.eventstore.dbclient.proto.streams.*"),
//
ProblemFilters.exclude[DirectMissingMethodProblem]("sec.api.cluster.Notifier#gossip.*")
)
)
.dependsOn(core)
Expand Down

0 comments on commit 25ff0ea

Please sign in to comment.