Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move REPL related xsbti Java classes to the correct module #425

Merged
merged 3 commits into from
Oct 10, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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")
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mima exclusions moved to its own file, so is this ready to merge?