1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6 * Licensed to the Apache Software Foundation (ASF) under one
7 * or more contributor license agreements. See the NOTICE file
8 * distributed with this work for additional information
9 * regarding copyright ownership. The ASF licenses this file
10 * to you under the Apache License, Version 2.0 (the
11 * "License"); you may not use this file except in compliance
12 * with the License. You may obtain a copy of the License at
14 * http://www.apache.org/licenses/LICENSE-2.0
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
23 <modelVersion>4.0.0</modelVersion>
26 <artifactId>hbase-shaded</artifactId>
27 <groupId>org.apache.hbase</groupId>
28 <version>3.0.0-alpha-3-SNAPSHOT</version>
29 <relativePath>..</relativePath>
32 <artifactId>hbase-shaded-testing-util</artifactId>
33 <name>Apache HBase - Shaded - Testing Util</name>
35 <!-- test-jar dependencies -->
37 <groupId>org.apache.hadoop</groupId>
38 <artifactId>hadoop-common</artifactId>
39 <version>${hadoop.version}</version>
41 <scope>compile</scope>
44 <groupId>javax.servlet.jsp</groupId>
45 <artifactId>jsp-api</artifactId>
48 <groupId>org.codehaus.jackson</groupId>
49 <artifactId>jackson-mapper-asl</artifactId>
52 <groupId>org.codehaus.jackson</groupId>
53 <artifactId>jackson-core-asl</artifactId>
56 <groupId>org.codehaus.jackson</groupId>
57 <artifactId>jackson-jaxrs</artifactId>
60 <groupId>org.codehaus.jackson</groupId>
61 <artifactId>jackson-xc</artifactId>
64 <groupId>javax.xml.bind</groupId>
65 <artifactId>jaxb-api</artifactId>
68 <groupId>javax.ws.rs</groupId>
69 <artifactId>jsr311-api</artifactId>
74 <groupId>org.apache.hadoop</groupId>
75 <artifactId>hadoop-hdfs</artifactId>
77 <scope>compile</scope>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-mapreduce-client-app</artifactId>
83 <scope>compile</scope>
86 <groupId>org.apache.hadoop</groupId>
87 <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
89 <scope>compile</scope>
92 <groupId>org.apache.hbase</groupId>
93 <artifactId>hbase-common</artifactId>
95 <scope>compile</scope>
98 <groupId>org.apache.hbase</groupId>
99 <artifactId>hbase-server</artifactId>
100 <type>test-jar</type>
101 <scope>compile</scope>
104 <groupId>javax.xml.bind</groupId>
105 <artifactId>jaxb-api</artifactId>
110 <groupId>org.apache.hbase</groupId>
111 <artifactId>hbase-asyncfs</artifactId>
112 <type>test-jar</type>
113 <scope>compile</scope>
116 <groupId>org.apache.hbase</groupId>
117 <artifactId>hbase-zookeeper</artifactId>
118 <type>test-jar</type>
119 <scope>compile</scope>
122 <groupId>org.apache.hbase</groupId>
123 <artifactId>hbase-hadoop-compat</artifactId>
124 <type>test-jar</type>
125 <scope>compile</scope>
128 <groupId>org.codehaus.jackson</groupId>
129 <artifactId>jackson-jaxrs</artifactId>
130 <version>1.9.13</version>
131 <scope>compile</scope>
134 <groupId>org.apache.hbase</groupId>
135 <artifactId>hbase-testing-util</artifactId>
136 <scope>compile</scope>
139 <groupId>javax.xml.bind</groupId>
140 <artifactId>jaxb-api</artifactId>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-site-plugin</artifactId>
155 <!--Make it so assembly:single does nothing in here-->
156 <artifactId>maven-assembly-plugin</artifactId>
158 <skipAssembly>true</skipAssembly>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-shade-plugin</artifactId>
166 <id>aggregate-into-a-jar-with-relocated-third-parties</id>
170 <!-- exclude J2EE modules that come in for JDK11+ (since
171 hadoop-3.2.0) or modules that come in for JDK8+ but
172 need not be included -->
173 <exclude>javax.annotation:javax.annotation-api</exclude>
174 <exclude>javax.activation:javax.activation-api</exclude>
175 <exclude>jakarta.ws.rs:jakarta.ws.rs-api</exclude>
176 <exclude>jakarta.annotation:jakarta.annotation-api</exclude>
177 <exclude>jakarta.validation:jakarta.validation-api</exclude>
178 <exclude>org.glassfish.hk2.external:jakarta.inject</exclude>
180 Tell the shade plugin that in this case we want to include hadoop
181 by leaving out the exclude.
183 <!-- The rest of these should be kept in sync with the parent pom -->
184 <exclude>org.apache.hbase:hbase-resource-bundle</exclude>
185 <exclude>org.slf4j:*</exclude>
186 <exclude>com.google.code.findbugs:*</exclude>
187 <exclude>com.github.stephenc.findbugs:*</exclude>
188 <exclude>com.github.spotbugs:*</exclude>
189 <exclude>org.apache.htrace:*</exclude>
190 <exclude>org.apache.yetus:*</exclude>
191 <exclude>org.apache.logging.log4j:*</exclude>
192 <exclude>commons-logging:*</exclude>
193 <exclude>org.javassist:*</exclude>
194 <exclude>io.opentelemetry:*</exclude>