Skip to content

Commit

Permalink
Move mima exclusions to its own file
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Oct 9, 2017
1 parent e2896e1 commit 505ac2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 0 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -387,14 +387,6 @@ lazy val compilerBridge: Project = (project in internalPath / "compiler-bridge")
publishLocal := publishLocal.dependsOn(cleanSbtBridge).value,
altPublishSettings,
mimaSettings,
mimaBinaryIssueFilters ++= Vector(
// xsbti Java interfaces must be defined in the compiler interface, not the bridge.
// Bridge implementations are compiled per Zinc, so these are safe to change.
exclude[MissingClassProblem]("xsbti.InteractiveConsoleFactory"),
exclude[MissingClassProblem]("xsbti.InteractiveConsoleResult"),
exclude[MissingClassProblem]("xsbti.InteractiveConsoleInterface"),
exclude[MissingClassProblem]("xsbti.InteractiveConsoleResponse"),
),
)

val scalaPartialVersion = Def setting (CrossVersion partialVersion scalaVersion.value)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# xsbti Java interfaces must be defined in the compiler interface, not the bridge.
# Bridge implementations are compiled per Zinc, so these are safe to change.
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleFactory")
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleResult")
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleInterface")
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleResponse")

0 comments on commit 505ac2e

Please sign in to comment.