aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Or <andrew@databricks.com>2014-11-07 23:16:13 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-11-07 23:16:13 -0800
commit7afc8564f33eb2868f458f85046f59a51b516ed6 (patch)
treeab241840695c40256263dff6a50adcfa1a49f84f
parent7e9d975676d56ace0e84c2200137e4cd4eba074a (diff)
downloadspark-7afc8564f33eb2868f458f85046f59a51b516ed6.tar.gz
spark-7afc8564f33eb2868f458f85046f59a51b516ed6.tar.bz2
spark-7afc8564f33eb2868f458f85046f59a51b516ed6.zip
[SPARK-4291][Build] Rename network module projects
The names of the recently introduced network modules are inconsistent with those of the other modules in the project. We should just drop the "Code" suffix since it doesn't sacrifice any meaning, especially before they get into an official release. ``` [INFO] Reactor Build Order: [INFO] [INFO] Spark Project Parent POM [INFO] Spark Project Common Network Code [INFO] Spark Project Shuffle Streaming Service Code [INFO] Spark Project Core [INFO] Spark Project Bagel [INFO] Spark Project GraphX [INFO] Spark Project Streaming [INFO] Spark Project Catalyst [INFO] Spark Project SQL [INFO] Spark Project ML Library [INFO] Spark Project Tools [INFO] Spark Project Hive [INFO] Spark Project REPL [INFO] Spark Project YARN Parent POM [INFO] Spark Project YARN Stable API [INFO] Spark Project Assembly [INFO] Spark Project External Twitter [INFO] Spark Project External Kafka [INFO] Spark Project External Flume Sink [INFO] Spark Project External Flume [INFO] Spark Project External ZeroMQ [INFO] Spark Project External MQTT [INFO] Spark Project Examples [INFO] Spark Project Yarn Shuffle Service Code ``` Author: Andrew Or <andrew@databricks.com> Closes #3148 from andrewor14/build-drop-code and squashes the following commits: eac839b [Andrew Or] Network -> Networking d01ad47 [Andrew Or] Rename network module project names
-rw-r--r--network/common/pom.xml2
-rw-r--r--network/shuffle/pom.xml2
-rw-r--r--network/yarn/pom.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/network/common/pom.xml b/network/common/pom.xml
index 6144548a8f..8b24ebf1ba 100644
--- a/network/common/pom.xml
+++ b/network/common/pom.xml
@@ -29,7 +29,7 @@
<groupId>org.apache.spark</groupId>
<artifactId>spark-network-common_2.10</artifactId>
<packaging>jar</packaging>
- <name>Spark Project Common Network Code</name>
+ <name>Spark Project Networking</name>
<url>http://spark.apache.org/</url>
<properties>
<sbt.project.name>network-common</sbt.project.name>
diff --git a/network/shuffle/pom.xml b/network/shuffle/pom.xml
index fe5681d463..27c8467687 100644
--- a/network/shuffle/pom.xml
+++ b/network/shuffle/pom.xml
@@ -29,7 +29,7 @@
<groupId>org.apache.spark</groupId>
<artifactId>spark-network-shuffle_2.10</artifactId>
<packaging>jar</packaging>
- <name>Spark Project Shuffle Streaming Service Code</name>
+ <name>Spark Project Shuffle Streaming Service</name>
<url>http://spark.apache.org/</url>
<properties>
<sbt.project.name>network-shuffle</sbt.project.name>
diff --git a/network/yarn/pom.xml b/network/yarn/pom.xml
index e60d8c1f78..6e6f6f3e79 100644
--- a/network/yarn/pom.xml
+++ b/network/yarn/pom.xml
@@ -29,7 +29,7 @@
<groupId>org.apache.spark</groupId>
<artifactId>spark-network-yarn_2.10</artifactId>
<packaging>jar</packaging>
- <name>Spark Project Yarn Shuffle Service Code</name>
+ <name>Spark Project YARN Shuffle Service</name>
<url>http://spark.apache.org/</url>
<properties>
<sbt.project.name>network-yarn</sbt.project.name>