We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9ff77 commit ad4e6bdCopy full SHA for ad4e6bd
project/MimaExcludes.scala
@@ -35,8 +35,14 @@ object MimaExcludes {
35
def excludes(version: String) = version match {
36
case v if v.startsWith("1.6") =>
37
Seq(
38
- MimaBuild.excludeSparkPackage("network")
39
- )
+ MimaBuild.excludeSparkPackage("deploy"),
+ // 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
+ )
46
case v if v.startsWith("1.5") =>
47
48
MimaBuild.excludeSparkPackage("network"),
0 commit comments