You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by tu...@apache.org on 2011/10/07 03:01:19 UTC

svn commit: r1179912 - in /hadoop/common/trunk: hadoop-tools/ hadoop-tools/pom.xml pom.xml

Author: tucu
Date: Fri Oct  7 01:01:18 2011
New Revision: 1179912

URL: http://svn.apache.org/viewvc?rev=1179912&view=rev
Log:
HADOOP-7624. Set things up for a top level hadoop-tools module. (tucu)

Added:
    hadoop/common/trunk/hadoop-tools/
    hadoop/common/trunk/hadoop-tools/pom.xml
Modified:
    hadoop/common/trunk/pom.xml

Added: hadoop/common/trunk/hadoop-tools/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-tools/pom.xml?rev=1179912&view=auto
==============================================================================
--- hadoop/common/trunk/hadoop-tools/pom.xml (added)
+++ hadoop/common/trunk/hadoop-tools/pom.xml Fri Oct  7 01:01:18 2011
@@ -0,0 +1,53 @@
+<?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>
+    <version>0.24.0-SNAPSHOT</version>
+    <relativePath>../hadoop-project</relativePath>
+  </parent>
+  <groupId>org.apache.hadoop</groupId>
+  <artifactId>hadoop-tools-project</artifactId>
+  <version>0.24.0-SNAPSHOT</version>
+  <description>Apache Hadoop Tools</description>
+  <name>Apache Hadoop Tools</name>
+  <packaging>pom</packaging>
+
+  <modules>
+  </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>

Modified: hadoop/common/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/pom.xml?rev=1179912&r1=1179911&r2=1179912&view=diff
==============================================================================
--- hadoop/common/trunk/pom.xml (original)
+++ hadoop/common/trunk/pom.xml Fri Oct  7 01:01:18 2011
@@ -40,6 +40,7 @@
     <module>hadoop-common-project</module>
     <module>hadoop-hdfs-project</module>
     <module>hadoop-mapreduce-project</module>
+    <module>hadoop-tools</module>
   </modules>
 
   <build>