File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -337,6 +337,7 @@ lazy val compilerInterface = (project in internalPath / "compiler-interface")
337
337
import com .typesafe .tools .mima .core .ProblemFilters ._
338
338
Seq (
339
339
exclude[ReversedMissingMethodProblem ](" xsbti.compile.ExternalHooks#Lookup.hashClasspath" ),
340
+ exclude[ReversedMissingMethodProblem ](" xsbti.compile.ScalaInstance.loaderLibraryOnly" ),
340
341
)
341
342
},
342
343
)
@@ -466,6 +467,14 @@ lazy val zincClasspath = (project in internalPath / "zinc-classpath")
466
467
relaxNon212,
467
468
libraryDependencies ++= Seq (scalaCompiler.value, launcherInterface),
468
469
mimaSettings,
470
+ mimaBinaryIssueFilters ++= {
471
+ import com .typesafe .tools .mima .core ._
472
+ import com .typesafe .tools .mima .core .ProblemFilters ._
473
+ Seq (
474
+ // Add another ctor to ScalaInstance
475
+ exclude[DirectMissingMethodProblem ](" sbt.internal.inc.ScalaInstance.this" ),
476
+ )
477
+ },
469
478
)
470
479
.configure(addSbtIO)
471
480
You can’t perform that action at this time.
0 commit comments