We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eb1db4 commit 696296dCopy full SHA for 696296d
project/MimaExcludes.scala
@@ -37,8 +37,11 @@ object MimaExcludes {
37
def excludes(version: String) = version match {
38
case v if v.startsWith("2.0") =>
39
Seq(
40
- // SPARK-7995 Remove AkkaRpcEnv
41
- excludePackage("org.apache.spark.rpc.akka")
+ excludePackage("org.apache.spark.rpc.akka"),
+ excludePackage("org.spark-project.jetty"),
42
+ excludePackage("org.apache.spark.unused"),
43
+ excludePackage("org.apache.spark.sql.catalyst"),
44
+ excludePackage("org.apache.spark.sql.execution")
45
) ++ Seq(
46
ProblemFilters.exclude[IncompatibleResultTypeProblem]("org.apache.spark.SparkContext.emptyRDD"),
47
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.broadcast.HttpBroadcastFactory")
0 commit comments