Skip to content

Commit b99703a

Browse files
committed
Mima fixes.
1 parent ad4e6bd commit b99703a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

project/MimaExcludes.scala

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ object MimaExcludes {
3636
case v if v.startsWith("1.6") =>
3737
Seq(
3838
MimaBuild.excludeSparkPackage("deploy"),
39+
MimaBuild.excludeSparkPackage("network"),
3940
// These are needed if checking against the sbt build, since they are part of
4041
// the maven-generated artifacts in 1.3.
4142
excludePackage("org.spark-project.jetty"),
4243
MimaBuild.excludeSparkPackage("unused"),
43-
ProblemFilters.exclude[MissingClassProblem](
44-
"org.apache.spark.sql.execution.datasources.DefaultSource")
45-
)
44+
// SQL execution is considered private.
45+
excludePackage("org.apache.spark.sql.execution"),
46+
) ++
47+
MimaBuild.excludeSparkClass("streaming.flume.FlumeTestUtils")
4648
case v if v.startsWith("1.5") =>
4749
Seq(
4850
MimaBuild.excludeSparkPackage("network"),

0 commit comments

Comments
 (0)