hadoop-apache2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.facebook.presto.hadoop</groupId> <artifactId>hadoop-apache2</artifactId> <version>2.7.4-12</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>airbase</artifactId> <groupId>com.facebook.airlift</groupId> <version>98</version> <relativePath>../../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.facebook.presto.hadoop</groupId> <artifactId>hadoop-apache2</artifactId> <name>hadoop-apache2</name> <version>2.7.4-12</version> <description>Shaded version of Apache Hadoop 2.x for Presto</description> <url>https://github.com/facebook/presto-hadoop-apache2</url> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/facebook/presto-hadoop-apache2.git</connection> <developerConnection>scm:git:git://github.com/facebook/presto-hadoop-apache2.git</developerConnection> <tag>2.7.4-12</tag> <url>https://github.com/facebook/presto-hadoop-apache2</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${project.build.targetJdk}</source> <target>${project.build.targetJdk}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <shadeSourcesContent>true</shadeSourcesContent> <dependencyReducedPomLocation>${project.build.directory}/pom.xml</dependencyReducedPomLocation> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> <transformers> <transformer /> </transformers> <relocations> <relocation> <pattern>org.iq80.leveldb</pattern> <shadedPattern>${shadeBase}.org.iq80.leveldb</shadedPattern> </relocation> <relocation> <pattern>org.apache.http</pattern> <shadedPattern>${shadeBase}.org.apache.http</shadedPattern> </relocation> <relocation> <pattern>io.netty</pattern> <shadedPattern>${shadeBase}.io.netty</shadedPattern> </relocation> <relocation> <pattern>com.microsoft.azure</pattern> <shadedPattern>${shadeBase}.com.microsoft.azure</shadedPattern> </relocation> <relocation> <pattern>org.apache.avro</pattern> <shadedPattern>${shadeBase}.org.apache.avro</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>${shadeBase}.org.apache.commons</shadedPattern> </relocation> <relocation> <pattern>com.google.common</pattern> <shadedPattern>${shadeBase}.com.google.common</shadedPattern> </relocation> <relocation> <pattern>com.google.protobuf</pattern> <shadedPattern>${shadeBase}.com.google.protobuf</shadedPattern> </relocation> <relocation> <pattern>com.google.gson</pattern> <shadedPattern>${shadeBase}.com.google.gson</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml.jackson.core</pattern> <shadedPattern>${shadeBase}.com.fasterxml.jackson.core</shadedPattern> </relocation> <relocation> <pattern>org.codehaus.jackson</pattern> <shadedPattern>${shadeBase}.org.codehaus.jackson</shadedPattern> </relocation> <relocation> <pattern>org.mortbay</pattern> <shadedPattern>${shadeBase}.org.mortbay</shadedPattern> </relocation> <relocation> <pattern>org.apache.log4j</pattern> <shadedPattern>${shadeBase}.org.apache.log4j</shadedPattern> </relocation> <relocation> <pattern>org.slf4j</pattern> <shadedPattern>${shadeBase}.org.slf4j</shadedPattern> </relocation> <relocation> <pattern>com.google.thirdparty.publicsuffix</pattern> <shadedPattern>${shadeBase}.com.google.thirdparty.publicsuffix</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/maven/**</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> <filter> <artifact>org.slf4j:*</artifact> <excludes> <exclude>META-INF/services/**</exclude> </excludes> </filter> <filter> <artifact>io.netty:netty-all</artifact> <excludes> <exclude>META-INF/io.netty.versions.properties</exclude> </excludes> </filter> <filter> <artifact>com.fasterxml.jackson.*:*</artifact> <excludes> <exclude>META-INF/services/**</exclude> </excludes> </filter> <filter> <artifact>commons-configuration:commons-configuration</artifact> <excludes> <exclude>*.xml</exclude> <exclude>*.dtd</exclude> </excludes> </filter> <filter> <artifact>commons-httpclient:commons-httpclient</artifact> <excludes> <exclude>META-INF/README.txt</exclude> </excludes> </filter> <filter> <artifact>org.apache.htrace:htrace-core</artifact> <excludes> <exclude>META-INF/services/commons-logging/**</exclude> <exclude>META-INF/services/com.fasterxml.jackson.*</exclude> </excludes> </filter> <filter> <artifact>org.apache.hadoop:hadoop-common</artifact> <excludes> <exclude>*.h</exclude> <exclude>org/apache/hadoop/util/LineReader.class</exclude> </excludes> </filter> <filter> <artifact>org.apache.hadoop:hadoop-mapreduce-client-core</artifact> <excludes> <exclude>mapred-default.xml.orig</exclude> </excludes> </filter> <filter> <artifact>${project.groupId}:${project.artifactId}</artifact> <includes> <include>**</include> </includes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>clean verify -DskipTests</preparationGoals> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${dep.nexus-staging-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy-to-ossrh</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <properties> <air.check.skip-enforcer>true</air.check.skip-enforcer> <air.check.skip-dependency>true</air.check.skip-dependency> <air.check.skip-pmd>true</air.check.skip-pmd> <air.check.skip-spotbugs>true</air.check.skip-spotbugs> <dep.hadoop.version>2.7.4</dep.hadoop.version> <dep.slf4j.version>1.7.13</dep.slf4j.version> <project.build.targetJdk>1.7</project.build.targetJdk> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <shadeBase>com.facebook.presto.hadoop.\$internal</shadeBase> <air.javadoc.lint>-missing</air.javadoc.lint> <air.check.skip-duplicate-finder>true</air.check.skip-duplicate-finder> <air.check.skip-modernizer>true</air.check.skip-modernizer> </properties> </project>