aboutsummaryrefslogtreecommitdiff
path: root/project/SparkBuild.scala
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2016-04-09 14:03:03 -0700
committerXiangrui Meng <meng@databricks.com>2016-04-09 14:03:03 -0700
commit415446cc9b2652f6da11ee8ead5eb4e66685c45f (patch)
treeee76f91f1080abc993307315a09697060e0fb948 /project/SparkBuild.scala
parentcd2fed70129ba601f8c849a93eeb44a5d69c2402 (diff)
downloadspark-415446cc9b2652f6da11ee8ead5eb4e66685c45f.tar.gz
spark-415446cc9b2652f6da11ee8ead5eb4e66685c45f.tar.bz2
spark-415446cc9b2652f6da11ee8ead5eb4e66685c45f.zip
Revert "[SPARK-14462][ML][MLLIB] add the mllib-local build to maven pom"
This reverts commit 1598d11bb0248384872cf88bc2b16f3b238046ad.
Diffstat (limited to 'project/SparkBuild.scala')
-rw-r--r--project/SparkBuild.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index c5688ecec6..60124ef0a1 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -47,9 +47,9 @@ object BuildCommons {
).map(ProjectRef(buildLocation, _))
val allProjects@Seq(
- core, graphx, mllib, mllibLocal, repl, networkCommon, networkShuffle, launcher, unsafe, testTags, sketch, _*
+ core, graphx, mllib, repl, networkCommon, networkShuffle, launcher, unsafe, testTags, sketch, _*
) = Seq(
- "core", "graphx", "mllib", "mllib-local", "repl", "network-common", "network-shuffle", "launcher", "unsafe",
+ "core", "graphx", "mllib", "repl", "network-common", "network-shuffle", "launcher", "unsafe",
"test-tags", "sketch"
).map(ProjectRef(buildLocation, _)) ++ sqlProjects ++ streamingProjects
@@ -254,7 +254,7 @@ object SparkBuild extends PomBuild {
val mimaProjects = allProjects.filterNot { x =>
Seq(
spark, hive, hiveThriftServer, catalyst, repl, networkCommon, networkShuffle, networkYarn,
- unsafe, testTags, sketch, mllibLocal
+ unsafe, testTags, sketch
).contains(x)
}