123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107 |
- <?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-minicluster</artifactId>
- <version>3.5.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>
- <exclusion>
- <groupId>org.codehaus.jettison</groupId>
- <artifactId>jettison</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>*:*</artifact>
- <excludes>
- <exclude>META-INF/versions/9/module-info.class</exclude>
- <exclude>META-INF/versions/11/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>
|