All Downloads are FREE. Search and download functionalities are using the official Maven repository.

assemblies.hadoop-tools.xml Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
<!--
   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 Li2cense 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.
-->
<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-tools</id>
  <formats>
    <format>dir</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <fileSets>
    <fileSet>
      <directory>../hadoop-pipes/src/main/native/pipes/api/hadoop</directory>
      <includes>
        <include>*.hh</include>
      </includes>
      <outputDirectory>/include</outputDirectory>
    </fileSet>
    <fileSet>
      <directory>../hadoop-pipes/src/main/native/utils/api/hadoop</directory>
      <includes>
        <include>*.hh</include>
      </includes>
      <outputDirectory>/include</outputDirectory>
    </fileSet>
    <fileSet>
      <directory>../hadoop-pipes/target/native</directory>
      <includes>
        <include>*.a</include>
      </includes>
      <outputDirectory>lib/native</outputDirectory>
    </fileSet>
    <fileSet>
      <directory>../hadoop-archives/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>../hadoop-datajoin/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>../hadoop-distcp/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>../hadoop-extras/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>../hadoop-gridmix/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>../hadoop-rumen/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>../hadoop-streaming/target</directory>
      <outputDirectory>/share/hadoop/${hadoop.component}/sources</outputDirectory>
      <includes>
        <include>*-sources.jar</include>
      </includes>
    </fileSet>
  </fileSets>
  <dependencySets>
    <dependencySet>
      <outputDirectory>/share/hadoop/${hadoop.component}/lib</outputDirectory>
      <unpack>false</unpack>
      <scope>runtime</scope>
      <useProjectArtifact>false</useProjectArtifact>
      <!-- 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>
        <exclude>org.apache.hadoop:hadoop-mapreduce</exclude>
        <!-- pipes is native stuff, this just keeps pom from being package-->
        <exclude>org.apache.hadoop:hadoop-pipes</exclude>
        <!-- use slf4j from common to avoid multiple binding warnings -->
        <exclude>org.slf4j:slf4j-api</exclude>
        <exclude>org.slf4j:slf4j-log4j12</exclude>
      </excludes>
    </dependencySet>
  </dependencySets>
</assembly>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy