Skip to content

Commit 776bc2c

Browse files
committed
Add two excludes to workaround Mima annotation issues.
1 parent ec90e21 commit 776bc2c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

project/MimaExcludes.scala

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ object MimaExcludes {
3737
Seq(
3838
MimaBuild.excludeSparkPackage("deploy"),
3939
MimaBuild.excludeSparkPackage("graphx")
40+
) ++
41+
// This is @DeveloperAPI, but Mima still gives false-positives:
42+
MimaBuild.excludeSparkClass("scheduler.SparkListenerApplicationStart") ++
43+
Seq(
44+
// This is @Experimental, but Mima still gives false-positives:
45+
ProblemFilters.exclude[MissingMethodProblem](
46+
"org.apache.spark.api.java.JavaRDDLike.foreachAsync")
4047
)
4148
case v if v.startsWith("1.1") =>
4249
Seq(

0 commit comments

Comments
 (0)