123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457 |
- <?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 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-project</artifactId>
- <version>3.5.0-SNAPSHOT</version>
- <relativePath>../../hadoop-project</relativePath>
- </parent>
- <artifactId>hadoop-client-runtime</artifactId>
- <version>3.5.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <description>Apache Hadoop Client</description>
- <name>Apache Hadoop Client Runtime</name>
- <properties>
- <shaded.dependency.prefix>org.apache.hadoop.shaded</shaded.dependency.prefix>
- <!-- We contain no source -->
- <maven.javadoc.skip>true</maven.javadoc.skip>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-client</artifactId>
- <!-- We list this as optional because as a type-pom it won't get included in the shading.
- Marking it optional means it doesn't count as a transitive dependency of this artifact.
- -->
- <optional>true</optional>
- <exclusions>
- <!-- these APIs are a part of the SE JDK -->
- <exclusion>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- At runtime anyone using us must have the api present -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-client-api</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- This is the api's compile dependency, but we don't want it to be compile dependency here too. -->
- <dependency>
- <groupId>org.xerial.snappy</groupId>
- <artifactId>snappy-java</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- This comes from our parent pom. If we don't expressly change it here to get included,
- downstream will get warnings at compile time. -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-annotations</artifactId>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <groupId>jdk.tools</groupId>
- <artifactId>jdk.tools</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Since hadoop-client is listed as optional, we have to list transitive
- dependencies that we still want to show up.
- * Slf4j API
- * commons-logging
- -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- Move log4j to optional, since it is needed for some pieces folks might not use:
- * one of the three custom log4j appenders we have
- -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <scope>runtime</scope>
- <optional>true</optional>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>shade</id>
- <activation>
- <property><name>!skipShade</name></property>
- </activation>
- <build>
- <plugins>
- <!-- We contain no source -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <skipSource>true</skipSource>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <artifactSet>
- <excludes>
- <!-- We need a filter that matches just those things that aer included in the api jar -->
- <exclude>org.apache.hadoop:hadoop-client-api</exclude>
- <!-- Leave slf4j unshaded so downstream users can configure logging. -->
- <exclude>org.slf4j:slf4j-api</exclude>
- <!-- Leave commons-logging unshaded so downstream users can configure logging. -->
- <exclude>commons-logging:commons-logging</exclude>
- <!-- Leave log4j unshaded so downstream users can configure logging. -->
- <exclude>log4j:log4j</exclude>
- <!-- Leave javax APIs that are stable -->
- <!-- the jdk ships part of the javax.annotation namespace, so if we want to relocate this we'll have to care it out by class :( -->
- <exclude>com.google.code.findbugs:jsr305</exclude>
- <exclude>io.netty:*</exclude>
- <exclude>io.dropwizard.metrics:metrics-core</exclude>
- <exclude>org.eclipse.jetty:jetty-servlet</exclude>
- <exclude>org.eclipse.jetty:jetty-security</exclude>
- <exclude>org.ow2.asm:*</exclude>
- <!-- Leave bouncycastle unshaded because it's signed with a special Oracle certificate so it can be a custom JCE security provider -->
- <exclude>org.bouncycastle:*</exclude>
- <!-- Leave snappy that includes native methods which cannot be relocated. -->
- <exclude>org.xerial.snappy:*</exclude>
- <!-- leave out kotlin classes -->
- <exclude>org.jetbrains.kotlin:*</exclude>
- </excludes>
- </artifactSet>
- <filters>
- <!-- We need a filter that matches just those things that are included in the api jar -->
- <filter>
- <artifact>org.apache.hadoop:*</artifact>
- <excludes>
- <exclude>**/*</exclude>
- <exclude>*</exclude>
- </excludes>
- </filter>
- <!-- Some of our dependencies include source, so remove it. -->
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </filter>
- <!-- We only want one copy of the Localizer class. So long as we keep jasper compiler and runtime on the same version, which one doesn't matter -->
- <filter>
- <artifact>tomcat:jasper-compiler</artifact>
- <excludes>
- <exclude>org/apache/jasper/compiler/Localizer.class</exclude>
- </excludes>
- </filter>
- <!-- We rely on jersey for our web interfaces. We want to use its java services stuff only internal to jersey -->
- <filter>
- <artifact>com.sun.jersey:*</artifact>
- <excludes>
- <exclude>META-INF/services/javax.*</exclude>
- </excludes>
- </filter>
- <filter>
- <!-- skip french localization -->
- <artifact>org.apache.commons:commons-math3</artifact>
- <excludes>
- <exclude>assets/org/apache/commons/math3/**/*</exclude>
- </excludes>
- </filter>
- <filter>
- <!-- skip jetty license info already incorporated into LICENSE/NOTICE -->
- <artifact>org.eclipse.jetty:*</artifact>
- <excludes>
- <exclude>about.html</exclude>
- </excludes>
- </filter>
- <filter>
- <!-- skip jetty license info already incorporated into LICENSE/NOTICE -->
- <artifact>org.eclipse.jetty.websocket:*</artifact>
- <excludes>
- <exclude>about.html</exclude>
- </excludes>
- </filter>
- <filter>
- <!-- skip docs on formats used in kerby -->
- <artifact>org.apache.kerby:kerb-util</artifact>
- <excludes>
- <exclude>keytab.txt</exclude>
- <exclude>ccache.txt</exclude>
- </excludes>
- </filter>
- <!-- remove utility classes which are not required from
- dnsjava -->
- <filter>
- <artifact>dnsjava:dnsjava</artifact>
- <excludes>
- <exclude>dig*</exclude>
- <exclude>jnamed*</exclude>
- <exclude>lookup*</exclude>
- <exclude>update*</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>com.google.protobuf:protobuf-java</artifact>
- <excludes>
- <exclude>google/protobuf/*.proto</exclude>
- <exclude>google/protobuf/**/*.proto</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>META-INF/versions/9/module-info.class</exclude>
- <exclude>META-INF/versions/11/module-info.class</exclude>
- </excludes>
- </filter>
- </filters>
- <relocations>
- <relocation>
- <pattern>org/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.org.</shadedPattern>
- <excludes>
- <exclude>org/apache/hadoop/*</exclude>
- <exclude>org/apache/hadoop/**/*</exclude>
- <!-- Our non-shaded logging libraries -->
- <exclude>org/slf4j/*</exclude>
- <exclude>org/slf4j/**/*</exclude>
- <exclude>org/apache/commons/logging/*</exclude>
- <exclude>org/apache/commons/logging/**/*</exclude>
- <exclude>org/apache/log4j/*</exclude>
- <exclude>org/apache/log4j/**/*</exclude>
- <exclude>**/pom.xml</exclude>
- <!-- Not the org/ packages that are a part of the jdk -->
- <exclude>org/ietf/jgss/*</exclude>
- <exclude>org/omg/**/*</exclude>
- <exclude>org/w3c/dom/*</exclude>
- <exclude>org/w3c/dom/**/*</exclude>
- <exclude>org/xml/sax/*</exclude>
- <exclude>org/xml/sax/**/*</exclude>
- <exclude>org/bouncycastle/*</exclude>
- <exclude>org/bouncycastle/**/*</exclude>
- <!-- Exclude snappy-java -->
- <exclude>org/xerial/snappy/*</exclude>
- <exclude>org/xerial/snappy/**/*</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>com/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.com.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- <!-- Not the com/ packages that are a part of particular jdk implementations -->
- <exclude>com/sun/tools/*</exclude>
- <exclude>com/sun/javadoc/*</exclude>
- <exclude>com/sun/security/*</exclude>
- <exclude>com/sun/jndi/*</exclude>
- <exclude>com/sun/management/*</exclude>
- <exclude>com/sun/tools/**/*</exclude>
- <exclude>com/sun/javadoc/**/*</exclude>
- <exclude>com/sun/security/**/*</exclude>
- <exclude>com/sun/jndi/**/*</exclude>
- <exclude>com/sun/management/**/*</exclude>
- <exclude>com/ibm/security/*</exclude>
- <exclude>com/ibm/security/**/*</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>io/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.io.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- <!-- Exclude config keys for Hadoop that look like package names -->
- <exclude>io/compression/*</exclude>
- <exclude>io/compression/**/*</exclude>
- <exclude>io/mapfile/*</exclude>
- <exclude>io/mapfile/**/*</exclude>
- <exclude>io/map/index/*</exclude>
- <exclude>io/seqfile/*</exclude>
- <exclude>io/seqfile/**/*</exclude>
- <exclude>io/file/buffer/size</exclude>
- <exclude>io/skip/checksum/errors</exclude>
- <exclude>io/sort/*</exclude>
- <exclude>io/serializations</exclude>
- </excludes>
- </relocation>
- <!-- JSRs that haven't made it to inclusion in J2SE -->
- <relocation>
- <pattern>javax/el/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.el.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/cache/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.cache.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/servlet/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.servlet.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/activation/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.activation.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/ws/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.ws.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/xml/bind/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.xml.bind.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>net/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.net.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- <!-- Exclude config keys for Hadoop that look like package names -->
- <exclude>net/topology/*</exclude>
- <exclude>net/topology/**/*</exclude>
- <!-- Exclude lz4-java -->
- <exclude>net/jpountz/*</exclude>
- <exclude>net/jpountz/**/*</exclude>
- </excludes>
- </relocation>
- <!-- okio declares a top level package instead of nested -->
- <relocation>
- <pattern>okio/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.okio.</shadedPattern>
- </relocation>
- <!-- probably not. -->
- <!--
- <relocation>
- <pattern>javax/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- -->
- </relocations>
- <transformers>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"/>
- <transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
- <resources>
- <resource>NOTICE.txt</resource>
- <resource>NOTICE</resource>
- <resource>LICENSE</resource>
- </resources>
- </transformer>
- <transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
- <resource>META-INF/LICENSE.txt</resource>
- <file>${basedir}/../../LICENSE.txt</file>
- </transformer>
- <transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
- <resource>META-INF/NOTICE.txt</resource>
- <file>${basedir}/../../NOTICE.txt</file>
- </transformer>
- <transformer implementation="org.apache.maven.plugins.shade.resource.XmlAppendingTransformer">
- <resource>META-INF/jboss-beans.xml</resource>
- <!-- Add this to enable loading of DTDs
- <ignoreDtd>false</ignoreDtd>
- -->
- </transformer>
- <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
- <resource>META-INF/mailcap.default</resource>
- </transformer>
- <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
- <resource>META-INF/mimetypes.default</resource>
- </transformer>
- </transformers>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>license-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>noshade</id>
- <activation>
- <property><name>skipShade</name></property>
- </activation>
- <build>
- <plugins>
- <!-- We contain no source -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <skipSource>true</skipSource>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>license-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|