Skip to content

Commit ad4e6bd

Browse files
committed
Excludes based on Patrick's comment.
1 parent ca9ff77 commit ad4e6bd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

project/MimaExcludes.scala

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,14 @@ object MimaExcludes {
3535
def excludes(version: String) = version match {
3636
case v if v.startsWith("1.6") =>
3737
Seq(
38-
MimaBuild.excludeSparkPackage("network")
39-
)
38+
MimaBuild.excludeSparkPackage("deploy"),
39+
// These are needed if checking against the sbt build, since they are part of
40+
// the maven-generated artifacts in 1.3.
41+
excludePackage("org.spark-project.jetty"),
42+
MimaBuild.excludeSparkPackage("unused"),
43+
ProblemFilters.exclude[MissingClassProblem](
44+
"org.apache.spark.sql.execution.datasources.DefaultSource")
45+
)
4046
case v if v.startsWith("1.5") =>
4147
Seq(
4248
MimaBuild.excludeSparkPackage("network"),

0 commit comments

Comments
 (0)