2011-10-07 01:01:18 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-project</artifactId>
|
2012-03-28 07:37:06 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-10-07 01:01:18 +00:00
|
|
|
<relativePath>../hadoop-project</relativePath>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
2011-11-19 01:24:32 +00:00
|
|
|
<artifactId>hadoop-tools</artifactId>
|
2012-03-28 07:37:06 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-10-07 01:01:18 +00:00
|
|
|
<description>Apache Hadoop Tools</description>
|
|
|
|
<name>Apache Hadoop Tools</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
2011-11-19 01:24:32 +00:00
|
|
|
<module>hadoop-streaming</module>
|
2012-01-26 06:36:52 +00:00
|
|
|
<module>hadoop-distcp</module>
|
2011-12-13 20:17:59 +00:00
|
|
|
<module>hadoop-archives</module>
|
2012-01-18 22:10:12 +00:00
|
|
|
<module>hadoop-rumen</module>
|
2012-01-06 00:02:04 +00:00
|
|
|
<module>hadoop-tools-dist</module>
|
2012-01-18 22:10:12 +00:00
|
|
|
<module>hadoop-extras</module>
|
2011-10-07 01:01:18 +00:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>pom.xml</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|