Skip to content

Commit

Permalink
add 'sbtversionpolicy.DependencyCheckReport$SemVerVersion*' to MIMA f…
Browse files Browse the repository at this point in the history
…ilters
  • Loading branch information
Alexey Shuksto committed Aug 3, 2023
1 parent 52be291 commit a036565
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import com.typesafe.tools.mima.core._

inThisBuild(List(
organization := "ch.epfl.scala",
Expand Down Expand Up @@ -37,5 +38,9 @@ lazy val `sbt-version-policy` = project
"io.get-coursier" %% "versions" % "0.3.1",
"com.eed3si9n.verify" %% "verify" % "2.0.1" % Test,
),
testFrameworks += new TestFramework("verify.runner.Framework")
testFrameworks += new TestFramework("verify.runner.Framework"),
mimaBinaryIssueFilters ++= Seq(
// this class is `private` and it's only used from `extractSemVerNumbers` method, which is private
ProblemFilters.exclude[MissingClassProblem]("sbtversionpolicy.DependencyCheckReport$SemVerVersion*")
),
)

0 comments on commit a036565

Please sign in to comment.