Perform MiMa checks against 2.6.1 (#28324)
* Exclude jdk9+-specific classes from mima as in https://github.com/akka/akka/pull/24297#issue-162564159
This commit is contained in:
parent
21fbfe6724
commit
a3ca3a3fca
2 changed files with 6 additions and 1 deletions
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Java9+ API's will have to be always filtered until we have these classes in our normal build flow
|
||||||
|
ProblemFilters.exclude[MissingClassProblem]("akka.stream.javadsl.JavaFlowSupport*")
|
||||||
|
ProblemFilters.exclude[MissingClassProblem]("akka.stream.scaladsl.JavaFlowSupport*")
|
||||||
|
ProblemFilters.exclude[MissingClassProblem]("akka.stream.impl.JavaFlow*")
|
||||||
|
ProblemFilters.exclude[MissingClassProblem]("akka.stream.impl.Rs*")
|
||||||
|
|
@ -13,7 +13,7 @@ import com.typesafe.tools.mima.plugin.MimaPlugin.autoImport._
|
||||||
object MiMa extends AutoPlugin {
|
object MiMa extends AutoPlugin {
|
||||||
|
|
||||||
private val latestPatchOf25 = 26
|
private val latestPatchOf25 = 26
|
||||||
private val latestPatchOf26 = 0
|
private val latestPatchOf26 = 1
|
||||||
|
|
||||||
override def requires = MimaPlugin
|
override def requires = MimaPlugin
|
||||||
override def trigger = allRequirements
|
override def trigger = allRequirements
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue