2011-09-30 22:25:32 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License. See accompanying LICENSE file.
|
|
|
|
-->
|
2012-05-28 14:51:05 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
|
|
http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2011-09-30 22:25:32 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>hadoop-yarn</artifactId>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2017-06-30 00:57:40 +00:00
|
|
|
<version>3.0.0-beta1-SNAPSHOT</version>
|
2011-09-30 22:25:32 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hadoop-yarn-applications</artifactId>
|
2017-06-30 00:57:40 +00:00
|
|
|
<version>3.0.0-beta1-SNAPSHOT</version>
|
2015-05-08 13:53:53 +00:00
|
|
|
<name>Apache Hadoop YARN Applications</name>
|
2011-09-30 22:25:32 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2013-04-27 14:24:02 +00:00
|
|
|
<properties>
|
|
|
|
<hadoop.common.build.dir>${basedir}/../../../../hadoop-common-project/hadoop-common/target</hadoop.common.build.dir>
|
|
|
|
</properties>
|
|
|
|
|
2014-01-13 18:34:02 +00:00
|
|
|
<!-- Do not add dependencies here, add them to the POM of the leaf module -->
|
|
|
|
|
2011-09-30 22:25:32 +00:00
|
|
|
<modules>
|
|
|
|
<module>hadoop-yarn-applications-distributedshell</module>
|
2012-07-24 17:33:15 +00:00
|
|
|
<module>hadoop-yarn-applications-unmanaged-am-launcher</module>
|
2011-09-30 22:25:32 +00:00
|
|
|
</modules>
|
HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, Ramya Bharathi Nimmagadda.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 19:15:18 +00:00
|
|
|
|
2012-07-12 15:52:12 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>clover</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
<property>
|
|
|
|
<name>clover</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cenqua.clover</groupId>
|
|
|
|
<artifactId>clover</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2011-09-30 22:25:32 +00:00
|
|
|
</project>
|