aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2015-09-15 00:54:20 -0700
committerReynold Xin <rxin@databricks.com>2015-09-15 00:54:20 -0700
commit09b7e7c19897549a8622aec095f27b8b38a1a4d3 (patch)
treeebe0de2d94c8540111c0897a0370c763f2e5546c /project/MimaExcludes.scala
parent6503c4b5f3cf3ba9aefc850e7874a62a218b9b0a (diff)
downloadspark-09b7e7c19897549a8622aec095f27b8b38a1a4d3.tar.gz
spark-09b7e7c19897549a8622aec095f27b8b38a1a4d3.tar.bz2
spark-09b7e7c19897549a8622aec095f27b8b38a1a4d3.zip
Update version to 1.6.0-SNAPSHOT.
Author: Reynold Xin <rxin@databricks.com> Closes #8350 from rxin/1.6.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala13
1 files changed, 11 insertions, 2 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 3b8b6c8ffa..87b141cd3b 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -35,8 +35,17 @@ object MimaExcludes {
def excludes(version: String) = version match {
case v if v.startsWith("1.6") =>
Seq(
- MimaBuild.excludeSparkPackage("network")
- )
+ MimaBuild.excludeSparkPackage("deploy"),
+ MimaBuild.excludeSparkPackage("network"),
+ // These are needed if checking against the sbt build, since they are part of
+ // the maven-generated artifacts in 1.3.
+ excludePackage("org.spark-project.jetty"),
+ MimaBuild.excludeSparkPackage("unused"),
+ // SQL execution is considered private.
+ excludePackage("org.apache.spark.sql.execution")
+ ) ++
+ MimaBuild.excludeSparkClass("streaming.flume.FlumeTestUtils") ++
+ MimaBuild.excludeSparkClass("streaming.flume.PollingFlumeTestUtils")
case v if v.startsWith("1.5") =>
Seq(
MimaBuild.excludeSparkPackage("network"),