2011-10-28 18:29:43 -04:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You 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.
|
|
|
|
-->
|
2011-10-28 17:57:38 -04:00
|
|
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
|
|
|
<id>hadoop-mapreduce-dist</id>
|
|
|
|
<formats>
|
2011-10-28 18:22:23 -04:00
|
|
|
<format>dir</format>
|
2011-10-28 17:57:38 -04:00
|
|
|
</formats>
|
2011-10-28 18:22:23 -04:00
|
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
2011-10-28 17:57:38 -04:00
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<directory>bin</directory>
|
|
|
|
<outputDirectory>bin</outputDirectory>
|
|
|
|
<includes>
|
2011-12-16 04:17:00 -05:00
|
|
|
<include>mapred</include>
|
2013-07-08 16:28:55 -04:00
|
|
|
<include>mapred.cmd</include>
|
2011-12-16 04:17:00 -05:00
|
|
|
</includes>
|
|
|
|
<fileMode>0755</fileMode>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>bin</directory>
|
|
|
|
<outputDirectory>libexec</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>mapred-config.sh</include>
|
2013-07-08 16:28:55 -04:00
|
|
|
<include>mapred-config.cmd</include>
|
2011-12-16 04:17:00 -05:00
|
|
|
</includes>
|
|
|
|
<fileMode>0755</fileMode>
|
|
|
|
</fileSet>
|
2012-02-06 18:13:16 -05:00
|
|
|
<fileSet>
|
|
|
|
<directory>bin</directory>
|
|
|
|
<outputDirectory>sbin</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>mr-jobhistory-daemon.sh</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>0755</fileMode>
|
|
|
|
</fileSet>
|
2011-10-28 17:57:38 -04:00
|
|
|
<fileSet>
|
2012-08-08 01:33:56 -04:00
|
|
|
<directory>conf</directory>
|
2011-12-16 04:17:00 -05:00
|
|
|
<outputDirectory>etc/hadoop</outputDirectory>
|
2011-10-28 17:57:38 -04:00
|
|
|
<includes>
|
|
|
|
<include>**/*</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
2011-12-16 04:17:00 -05:00
|
|
|
<fileSet>
|
|
|
|
<directory>${basedir}</directory>
|
|
|
|
<outputDirectory>/share/doc/hadoop/${hadoop.component}</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*.txt</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${project.build.directory}/webapps</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/webapps</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${basedir}/src/main/conf</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/templates</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-site.xml</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${basedir}/src/main/packages/templates/conf</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/templates/conf</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${basedir}/dev-support/jdiff</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/jdiff</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${project.build.directory}/site/jdiff/xml</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/jdiff</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${project.build.directory}/site</directory>
|
|
|
|
<outputDirectory>/share/doc/hadoop/${hadoop.component}</outputDirectory>
|
|
|
|
</fileSet>
|
2013-04-19 17:59:31 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-app/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-common/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-core/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-hs/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-hs-plugins/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-mapreduce-examples/target</directory>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*-sources.jar</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
2011-10-28 17:57:38 -04:00
|
|
|
</fileSets>
|
|
|
|
<moduleSets>
|
|
|
|
<moduleSet>
|
|
|
|
<binaries>
|
2011-12-16 04:17:00 -05:00
|
|
|
<outputDirectory>share/hadoop/${hadoop.component}</outputDirectory>
|
2011-10-28 17:57:38 -04:00
|
|
|
<includeDependencies>false</includeDependencies>
|
|
|
|
<unpack>false</unpack>
|
|
|
|
</binaries>
|
|
|
|
</moduleSet>
|
2012-01-24 19:16:42 -05:00
|
|
|
<moduleSet>
|
|
|
|
<includes>
|
|
|
|
<include>org.apache.hadoop:hadoop-mapreduce-client-jobclient</include>
|
2012-07-18 18:43:52 -04:00
|
|
|
<include>org.apache.hadoop:hadoop-yarn-server-tests</include>
|
2012-01-24 19:16:42 -05:00
|
|
|
</includes>
|
|
|
|
<binaries>
|
|
|
|
<attachmentClassifier>tests</attachmentClassifier>
|
|
|
|
<outputDirectory>share/hadoop/${hadoop.component}</outputDirectory>
|
|
|
|
<includeDependencies>false</includeDependencies>
|
|
|
|
<unpack>false</unpack>
|
|
|
|
</binaries>
|
|
|
|
</moduleSet>
|
2011-10-28 17:57:38 -04:00
|
|
|
</moduleSets>
|
|
|
|
<dependencySets>
|
|
|
|
<dependencySet>
|
|
|
|
<useProjectArtifact>false</useProjectArtifact>
|
2011-12-16 04:17:00 -05:00
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/lib</outputDirectory>
|
2011-10-28 17:57:38 -04:00
|
|
|
<!-- Exclude hadoop artifacts. They will be found via HADOOP* env -->
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.apache.hadoop:hadoop-common</exclude>
|
|
|
|
<exclude>org.apache.hadoop:hadoop-hdfs</exclude>
|
2012-08-06 14:15:35 -04:00
|
|
|
<!-- use slf4j from common to avoid multiple binding warnings -->
|
|
|
|
<exclude>org.slf4j:slf4j-api</exclude>
|
|
|
|
<exclude>org.slf4j:slf4j-log4j12</exclude>
|
|
|
|
<exclude>org.hsqldb:hsqldb</exclude>
|
2011-10-28 17:57:38 -04:00
|
|
|
</excludes>
|
|
|
|
</dependencySet>
|
2012-08-06 14:15:35 -04:00
|
|
|
<dependencySet>
|
|
|
|
<useProjectArtifact>false</useProjectArtifact>
|
|
|
|
<outputDirectory>/share/hadoop/${hadoop.component}/lib-examples</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>org.hsqldb:hsqldb</include>
|
|
|
|
</includes>
|
|
|
|
</dependencySet>
|
2011-10-28 17:57:38 -04:00
|
|
|
</dependencySets>
|
|
|
|
</assembly>
|