Promote Distributed Data, #22201
This commit is contained in:
parent
d1ba2c1aae
commit
f409c06c78
7 changed files with 19 additions and 22 deletions
|
|
@ -57,9 +57,20 @@ object MiMa extends AutoPlugin {
|
|||
akka24WithScala212
|
||||
}
|
||||
}
|
||||
|
||||
val akka25PromotedArtifacts = Set(
|
||||
"akka-distributed-data"
|
||||
)
|
||||
|
||||
// check against all binary compatible artifacts
|
||||
versions.map(organization %% projectName % _).toSet
|
||||
versions.map { v =>
|
||||
val adjustedProjectName =
|
||||
if (akka25PromotedArtifacts(projectName) && v.startsWith("2.4"))
|
||||
projectName + "-experimental"
|
||||
else
|
||||
projectName
|
||||
organization %% adjustedProjectName % v
|
||||
}.toSet
|
||||
}
|
||||
|
||||
case class FilterAnyProblem(name: String) extends com.typesafe.tools.mima.core.ProblemFilter {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue