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
|
|
|
<!-- TODO: this layout is wrong. We need module specific bin files in module specific dirs -->
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
2011-10-28 18:03:21 -04:00
|
|
|
<directory>hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/native/target/usr/local/bin</directory>
|
2011-10-28 17:57:38 -04:00
|
|
|
<outputDirectory>bin</outputDirectory>
|
|
|
|
<fileMode>0755</fileMode>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-yarn/bin</directory>
|
|
|
|
<outputDirectory>bin</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>0755</fileMode>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>bin</directory>
|
|
|
|
<outputDirectory>bin</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>0755</fileMode>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>hadoop-yarn/conf</directory>
|
|
|
|
<outputDirectory>conf</outputDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
<moduleSets>
|
|
|
|
<moduleSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.apache.hadoop:hadoop-yarn-server-tests</exclude>
|
|
|
|
</excludes>
|
|
|
|
<binaries>
|
|
|
|
<outputDirectory>modules</outputDirectory>
|
|
|
|
<includeDependencies>false</includeDependencies>
|
|
|
|
<unpack>false</unpack>
|
|
|
|
</binaries>
|
|
|
|
</moduleSet>
|
|
|
|
</moduleSets>
|
|
|
|
<dependencySets>
|
|
|
|
<dependencySet>
|
|
|
|
<useProjectArtifact>false</useProjectArtifact>
|
|
|
|
<outputDirectory>/lib</outputDirectory>
|
|
|
|
<!-- 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>
|
|
|
|
</excludes>
|
|
|
|
</dependencySet>
|
|
|
|
</dependencySets>
|
|
|
|
</assembly>
|