aboutsummaryrefslogtreecommitdiff
path: root/project/SparkBuild.scala
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2015-12-19 22:40:35 -0800
committerReynold Xin <rxin@databricks.com>2015-12-19 22:40:35 -0800
commit284e29a870bbb62f59988a5d88cd12f1b0b6f9d3 (patch)
treedc1f029020716e90950c9208b81b821c11dda164 /project/SparkBuild.scala
parent0c4d6ad87389286280209b3f84a7fdc4d4be1441 (diff)
downloadspark-284e29a870bbb62f59988a5d88cd12f1b0b6f9d3.tar.gz
spark-284e29a870bbb62f59988a5d88cd12f1b0b6f9d3.tar.bz2
spark-284e29a870bbb62f59988a5d88cd12f1b0b6f9d3.zip
[SPARK-11808] Remove Bagel.
Author: Reynold Xin <rxin@databricks.com> Closes #10395 from rxin/SPARK-11808.
Diffstat (limited to 'project/SparkBuild.scala')
-rw-r--r--project/SparkBuild.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index b1dcaedcba..c3d53f835f 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -34,10 +34,10 @@ object BuildCommons {
private val buildLocation = file(".").getAbsoluteFile.getParentFile
- val allProjects@Seq(bagel, catalyst, core, graphx, hive, hiveThriftServer, mllib, repl,
+ val allProjects@Seq(catalyst, core, graphx, hive, hiveThriftServer, mllib, repl,
sql, networkCommon, networkShuffle, streaming, streamingFlumeSink, streamingFlume, streamingKafka,
streamingMqtt, streamingTwitter, streamingZeromq, launcher, unsafe, testTags) =
- Seq("bagel", "catalyst", "core", "graphx", "hive", "hive-thriftserver", "mllib", "repl",
+ Seq("catalyst", "core", "graphx", "hive", "hive-thriftserver", "mllib", "repl",
"sql", "network-common", "network-shuffle", "streaming", "streaming-flume-sink",
"streaming-flume", "streaming-kafka", "streaming-mqtt", "streaming-twitter",
"streaming-zeromq", "launcher", "unsafe", "test-tags").map(ProjectRef(buildLocation, _))
@@ -352,7 +352,7 @@ object OldDeps {
scalaVersion := "2.10.5",
libraryDependencies := Seq("spark-streaming-mqtt", "spark-streaming-zeromq",
"spark-streaming-flume", "spark-streaming-kafka", "spark-streaming-twitter",
- "spark-streaming", "spark-mllib", "spark-bagel", "spark-graphx",
+ "spark-streaming", "spark-mllib", "spark-graphx",
"spark-core").map(versionArtifact(_).get intransitive())
)
}
@@ -556,7 +556,7 @@ object Unidoc {
unidocProjectFilter in(ScalaUnidoc, unidoc) :=
inAnyProject -- inProjects(OldDeps.project, repl, examples, tools, streamingFlumeSink, yarn, testTags),
unidocProjectFilter in(JavaUnidoc, unidoc) :=
- inAnyProject -- inProjects(OldDeps.project, repl, bagel, examples, tools, streamingFlumeSink, yarn, testTags),
+ inAnyProject -- inProjects(OldDeps.project, repl, examples, tools, streamingFlumeSink, yarn, testTags),
// Skip actual catalyst, but include the subproject.
// Catalyst is not public API and contains quasiquotes which break scaladoc.