1 <project xmlns="https://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://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>
25 <artifactId>hbase-shaded</artifactId>
26 <groupId>org.apache.hbase</groupId>
27 <version>2.4.9</version>
28 <relativePath>..</relativePath>
30 <artifactId>hbase-shaded-client</artifactId>
31 <name>Apache HBase - Shaded - Client (with Hadoop bundled)</name>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-site-plugin</artifactId>
42 <!--Make it so assembly:single does nothing in here-->
43 <artifactId>maven-assembly-plugin</artifactId>
45 <skipAssembly>true</skipAssembly>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-shade-plugin</artifactId>
53 <id>aggregate-into-a-jar-with-relocated-third-parties</id>
57 <!-- exclude J2EE modules that come in for JDK11+ (since
58 hadoop-3.2.0) or modules that come in for JDK8+ but
59 need not be included -->
60 <exclude>javax.annotation:javax.annotation-api</exclude>
61 <exclude>javax.activation:javax.activation-api</exclude>
62 <exclude>jakarta.activation:jakarta.activation-api</exclude> <!-- Hadoop 3.3.1 -->
63 <exclude>jakarta.ws.rs:jakarta.ws.rs-api</exclude>
64 <exclude>jakarta.annotation:jakarta.annotation-api</exclude>
65 <exclude>jakarta.validation:jakarta.validation-api</exclude>
66 <exclude>org.glassfish.hk2.external:jakarta.inject</exclude>
68 Tell the shade plugin that in this case we want to include hadoop
69 by leaving out the exclude.
71 <!-- The rest of these should be kept in sync with the parent pom -->
72 <exclude>org.apache.hbase:hbase-resource-bundle</exclude>
73 <exclude>org.slf4j:*</exclude>
74 <exclude>com.google.code.findbugs:*</exclude>
75 <exclude>com.github.stephenc.findbugs:*</exclude>
76 <exclude>com.github.spotbugs:*</exclude>
77 <exclude>org.apache.htrace:*</exclude>
78 <exclude>org.apache.yetus:*</exclude>
79 <exclude>log4j:*</exclude>
80 <exclude>commons-logging:*</exclude>
81 <exclude>org.javassist:*</exclude>
92 <groupId>org.apache.hbase</groupId>
93 <artifactId>hbase-client</artifactId>