1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108 |
- <?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.4.0-SNAPSHOT</version>
- <relativePath>../../hadoop-project</relativePath>
- </parent>
- <artifactId>hadoop-client-minicluster</artifactId>
- <version>3.4.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <description>Apache Hadoop Minicluster for Clients</description>
- <name>Apache Hadoop Client Test Minicluster</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-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>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-client-runtime</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- Leave JUnit as a direct dependency -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- Adding hadoop-annotations so we can make it optional to remove from our transitive tree -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-annotations</artifactId>
- <scope>compile</scope>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>jdk.tools</groupId>
- <artifactId>jdk.tools</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- uncomment this dependency if you need to use
- `mvn dependency:tree -Dverbose` to determine if a dependency shows up
- in both the hadoop-client-* artifacts and something under minicluster.
- -->
- <!--
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-client</artifactId>
- <scope>provided</scope>
- </dependency>
- -->
- <!-- Anything we're going to include in the relocated jar we list as optional
- in order to work around MNG-5899
- -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-minicluster</artifactId>
- <optional>true</optional>
- <exclusions>
- <!-- exclude everything that comes in via the shaded runtime and api TODO remove once we have a filter for "is in these artifacts" -->
- <!-- Skip jersey, since we need it again here. -->
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-hdfs-client</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-mapreduce-client-app</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-mapreduce-client-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
- </exclusion>
- <!-- exclude things that came in via transitive in shaded runtime and api -->
- <exclusion>
- <groupId>io.netty</groupId>
- <artifactId>netty</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.avro</groupId>
- <artifactId>avro</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-client</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-mapreduce-client-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>${leveldbjni.group}</groupId>
- <artifactId>leveldbjni-all</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-text</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- </exclusion>
- <exclusion>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </exclusion>
- <!-- removing dependency jars from yarn-server-common, which are
- already included in hadoop-client-runtime and hadoop-client-api
- -->
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-auth</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.nimbusds</groupId>
- <artifactId>nimbus-jose-jwt</artifactId>
- </exclusion>
- <exclusion>
- <groupId>net.minidev</groupId>
- <artifactId>json-smart</artifactId>
- </exclusion>
- <exclusion>
- <groupId>net.minidev</groupId>
- <artifactId>accessors-smart</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-simplekdc</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-util</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>token-provider</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-crypto</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerby-util</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerby-pkix</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerby-asn1</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerby-config</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerby-xdr</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-identity</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-server</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-identity</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.kerby</groupId>
- <artifactId>kerb-admin</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-framework</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.curator</groupId>
- <artifactId>curator-recipes</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- </exclusion>
- <exclusion>
- <groupId>dnsjava</groupId>
- <artifactId>dnsjava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop.thirdparty</groupId>
- <artifactId>hadoop-shaded-guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-commons</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Add optional runtime dependency on the in-development timeline server module
- to indicate that downstream folks interested in turning it on need that dep.
- -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-server-timelineservice</artifactId>
- <scope>runtime</scope>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Add back in transitive dependencies of hadoop-minicluster that are test-jar artifacts excluded as a side effect of excluding the jar
- Note that all of these must be marked "optional" because they won't be removed from the reduced-dependencies pom after they're included.
- -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-common</artifactId>
- <scope>compile</scope>
- <type>test-jar</type>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-hdfs</artifactId>
- <scope>compile</scope>
- <type>test-jar</type>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
- <scope>compile</scope>
- <type>test-jar</type>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Add back in Mockito since the hadoop-hdfs test jar needs it. -->
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- Add back in the transitive dependencies excluded from hadoop-common in client TODO remove once we have a filter for "is in these artifacts" -->
- <!-- skip javax.servlet:servlet-api because it's in client -->
- <!-- Skip commons-logging:commons-logging-api because it looks like nothing actually included it -->
- <!-- Skip jetty-util because it's in client -->
- <dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-core</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>javax.ws.rs</groupId>
- <artifactId>jsr311-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-client</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.github.pjfanning</groupId>
- <artifactId>jersey-json</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.jaxrs</groupId>
- <artifactId>jackson-jaxrs-json-provider</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-server</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-servlet</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>ch.qos.cal10n</groupId>
- <artifactId>cal10n-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- skip org.apache.avro:avro-ipc because it doesn't look like hadoop-common actually uses it -->
- <dependency>
- <groupId>net.sf.kosmosfs</groupId>
- <artifactId>kfs</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.jcraft</groupId>
- <artifactId>jsch</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- add back in transitive dependencies of hadoop-mapreduce-client-app removed in client -->
- <!-- Skipping javax.servlet:servlet-api because it's in client -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-server-nodemanager</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-registry</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-server-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>${leveldbjni.group}</groupId>
- <artifactId>leveldbjni-all</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop.thirdparty</groupId>
- <artifactId>hadoop-shaded-guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-server-web-proxy</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-yarn-server-common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.hadoop.thirdparty</groupId>
- <artifactId>hadoop-shaded-guava</artifactId>
- </exclusion>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- skipping hadoop-annotations -->
- <dependency>
- <groupId>com.google.inject.extensions</groupId>
- <artifactId>guice-servlet</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- skipping junit:junit because it is test scope -->
- <!-- skipping avro because it is in client via hadoop-common -->
- <!-- skipping jline:jline because it is only present at test scope in the original -->
- <!-- skipping io.netty:netty because it's in client -->
- <!-- add back in transitive dependencies of hadoop-yarn-api removed in client -->
- <!-- skipping hadoop-annotations -->
- <dependency>
- <groupId>com.google.inject</groupId>
- <artifactId>guice</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.sun.jersey.jersey-test-framework</groupId>
- <artifactId>jersey-test-framework-grizzly2</artifactId>
- <optional>true</optional>
- <exclusions>
- <!-- excluding because client already has the tomcat version -->
- <exclusion>
- <groupId>org.glassfish</groupId>
- <artifactId>javax.servlet</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- skipping jersey-server because it's above -->
- <dependency>
- <groupId>com.sun.jersey.contribs</groupId>
- <artifactId>jersey-guice</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- skipping guice-servlet because it's above -->
- <!-- skipping avro because it is in client via hadoop-common -->
- <!-- skipping jersey-core because it's above -->
- <!-- skipping jersey-json because it's above. -->
- <!-- skipping io.netty:netty because it's in client -->
- <!-- Add back in transitive dependencies from hadoop-mapreduce-client-core that were excluded by client -->
- <!-- skipping junit:junit because it is test scope -->
- <!-- skipping guice because it's above -->
- <!-- skipping jersey-test-framework-grizzly2 because it's above -->
- <!-- skipping jersey-server because it's above -->
- <!-- skipping jersey-guice because it's above -->
- <!-- skipping avro because it is in client via hadoop-common -->
- <!-- skipping hadoop-annotations -->
- <!-- skipping guice-servlet because it's above -->
- <!-- skipping jersey-json because it's above. -->
- <!-- skipping io.netty:netty because it's in client -->
- <!-- add back in transitive dependencies of hadoop-mapreduce-client-jobclient that were excluded from client -->
- <!-- skipping junit:junit because it is test scope -->
- <!-- skipping avro because it is in client via hadoop-common -->
- <!-- skipping hadoop-annotations -->
- <!-- skipping guice-servlet because it's above -->
- <!-- skipping io.netty:netty because it's in client -->
- </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>
- <!-- Fine to expose our already-shaded deps as dependencies -->
- <exclude>org.apache.hadoop:hadoop-annotations</exclude>
- <exclude>org.apache.hadoop:hadoop-client-api</exclude>
- <exclude>org.apache.hadoop:hadoop-client-runtime</exclude>
- <!-- Fine to expose our purposefully not-shaded deps as dependencies -->
- <exclude>org.slf4j:slf4j-api</exclude>
- <exclude>commons-logging:commons-logging</exclude>
- <exclude>junit:junit</exclude>
- <exclude>com.google.code.findbugs:jsr305</exclude>
- <exclude>log4j:log4j</exclude>
- <exclude>org.eclipse.jetty.websocket:websocket-common</exclude>
- <exclude>org.eclipse.jetty.websocket:websocket-api</exclude>
- <!-- We need a filter that matches just those things that are included in the above artiacts -->
- <!-- 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>
- </excludes>
- </artifactSet>
- <filters>
- <!-- Some of our dependencies include source, so remove it. -->
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </filter>
- <!-- We pull in several test jars; keep out the actual test classes -->
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>**/Test*.class</exclude>
- </excludes>
- </filter>
- <!-- Since runtime has classes for these jars, we exclude them.
- We still want the java services api files, since those were excluded in runtime
- -->
- <filter>
- <artifact>com.sun.jersey:jersey-client</artifact>
- <excludes>
- <exclude>**/*.class</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>com.sun.jersey:jersey-core</artifact>
- <excludes>
- <exclude>**/*.class</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>com.sun.jersey:jersey-servlet</artifact>
- <excludes>
- <exclude>**/*.class</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.apache.hadoop:hadoop-mapreduce-client-jobclient:*</artifact>
- <excludes>
- <exclude>testjar/*</exclude>
- <exclude>testshell/*</exclude>
- <exclude>testdata/*</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>com.fasterxml.jackson.*:*</artifact>
- <excludes>
- <exclude>META-INF/versions/11/module-info.class</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>com.google.code.gson:gson</artifact>
- <excludes>
- <exclude>META-INF/versions/9/module-info.class</exclude>
- </excludes>
- </filter>
- <!-- Mockito tries to include its own unrelocated copy of hamcrest. :( -->
- <filter>
- <artifact>org.mockito:mockito-core</artifact>
- <excludes>
- <exclude>asm-license.txt</exclude>
- <exclude>cglib-license.txt</exclude>
- <exclude>hamcrest-license.txt</exclude>
- <exclude>objenesis-license.txt</exclude>
- <exclude>org/hamcrest/**/*.class</exclude>
- <exclude>org/hamcrest/*.class</exclude>
- <exclude>org/objenesis/**/*.class</exclude>
- <exclude>org/objenesis/*.class</exclude>
- </excludes>
- </filter>
- <!-- skip grizzly internals we don't need to run. -->
- <filter>
- <artifact>org.glassfish.grizzly:grizzly-http-servlet</artifact>
- <excludes>
- <exclude>catalog.cat</exclude>
- <exclude>javaee_5.xsd</exclude>
- <exclude>javaee_6.xsd</exclude>
- <exclude>javaee_web_services_client_1_2.xsd</exclude>
- <exclude>javaee_web_services_client_1_3.xsd</exclude>
- <exclude>jsp_2_1.xsd</exclude>
- <exclude>jsp_2_2.xsd</exclude>
- <exclude>web-app_2_5.xsd</exclude>
- <exclude>web-app_3_0.xsd</exclude>
- <exclude>web-common_3_0.xsd</exclude>
- <exclude>xml.xsd</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>
- <artifact>org.apache.hadoop:*</artifact>
- <excludes>
- <!-- No shipping log4j configs in a downstream facing library -->
- <exclude>log4j.properties</exclude>
- <exclude>container-log4j.properties</exclude>
- <!-- keep optional runtime configuration out of the jar; downstream can provide -->
- <exclude>capacity-scheduler.xml</exclude>
- <exclude>krb5.conf</exclude>
- <exclude>.keep</exclude>
- </excludes>
- </filter>
- <!-- remove .xsd from ehcache -->
- <filter>
- <artifact>org.ehcache</artifact>
- <excludes>
- <exclude>ehcache-107ext.xsd</exclude>
- <exclude>ehcache-core.xsd</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty.websocket:javax-websocket-server-impl</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty.websocket:websocket-client</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty:jetty-io</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <!-- Jetty 9.4.x: jetty-client and jetty-xml are depended by org.eclipse.jetty.websocket:websocket-client.-->
- <filter>
- <artifact>org.eclipse.jetty:jetty-client</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty:jetty-xml</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty:jetty-http</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty:jetty-util-ajax</artifact>
- <excludes>
- <exclude>*/**</exclude>
- </excludes>
- </filter>
- <filter>
- <artifact>org.eclipse.jetty:jetty-server</artifact>
- <excludes>
- <exclude>jetty-dir.css</exclude>
- </excludes>
- </filter>
- </filters>
- <!-- relocate classes from mssql-jdbc -->
- <relocations>
- <relocation>
- <pattern>microsoft/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.microsoft.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <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>
- <!-- Our non-shaded JUnit library -->
- <exclude>org/junit/*</exclude>
- <exclude>org/junit/**/*</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>contribs/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.contribs.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</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>
- <relocation>
- <pattern>javassist/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javassist.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</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/inject/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.inject.</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/ws/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.ws.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/websocket/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.websocket.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>javax/annotation/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.javax.websocket.</shadedPattern>
- <excludes>
- <exclude>**/pom.xml</exclude>
- </excludes>
- </relocation>
- <relocation>
- <pattern>jersey/</pattern>
- <shadedPattern>${shaded.dependency.prefix}.jersey.</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>
- </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>LICENSE</resource>
- <resource>LICENSE.txt</resource>
- <resource>NOTICE</resource>
- <resource>NOTICE.txt</resource>
- <resource>Grizzly_THIRDPARTYLICENSEREADME.txt</resource>
- <resource>LICENSE.dom-documentation.txt</resource>
- <resource>LICENSE.dom-software.txt</resource>
- <resource>LICENSE.dom-documentation.txt</resource>
- <resource>LICENSE.sax.txt</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>
- </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>
|