aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAnirudh <ramanathana@google.com>2016-12-06 16:23:27 -0800
committerMarcelo Vanzin <vanzin@cloudera.com>2016-12-06 16:23:27 -0800
commit81e5619ca141a1d3a06547d2b682cbe3f135b360 (patch)
treef31b74076510e4dee5aa34afeb8c1872d79189d8 /pom.xml
parenta8ced76f16523c571284dccfc73d655e89ad570f (diff)
downloadspark-81e5619ca141a1d3a06547d2b682cbe3f135b360.tar.gz
spark-81e5619ca141a1d3a06547d2b682cbe3f135b360.tar.bz2
spark-81e5619ca141a1d3a06547d2b682cbe3f135b360.zip
[SPARK-18662] Move resource managers to separate directory
## What changes were proposed in this pull request? * Moves yarn and mesos scheduler backends to resource-managers/ sub-directory (in preparation for https://issues.apache.org/jira/browse/SPARK-18278) * Corresponding change in top-level pom.xml. Ref: https://github.com/apache/spark/pull/16061#issuecomment-263649340 ## How was this patch tested? * Manual tests /cc rxin Author: Anirudh <ramanathana@google.com> Closes #16092 from foxish/fix-scheduler-structure-2.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 2f61d33b47..5e7dc15f9d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2580,7 +2580,7 @@
<profile>
<id>yarn</id>
<modules>
- <module>yarn</module>
+ <module>resource-managers/yarn</module>
<module>common/network-yarn</module>
</modules>
</profile>
@@ -2588,7 +2588,7 @@
<profile>
<id>mesos</id>
<modules>
- <module>mesos</module>
+ <module>resource-managers/mesos</module>
</modules>
</profile>