12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088 |
- <?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>
- </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.sun.jersey</groupId>
- <artifactId>jersey-json</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-core-asl</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-mapper-asl</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-jaxrs</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-xc</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>
- </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>
- <dependencies>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-maven-plugins</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <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>
- <!-- 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>
- </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>
- <!-- Needed until MSHADE-182 -->
- <transformer implementation="org.apache.hadoop.maven.plugin.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>
|