HBASE-26621 Set version as 3.0.0-alpha-3-SNAPSHOT in master (#3978)
[hbase.git] / hbase-shaded / hbase-shaded-testing-util / pom.xml
blob518704d4a80e60e7d12c73bf60e6a89c826e6c94
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">
4 <!--
5   /**
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
13    *
14    *     http://www.apache.org/licenses/LICENSE-2.0
15    *
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.
21    */
22 -->
23   <modelVersion>4.0.0</modelVersion>
25   <parent>
26     <artifactId>hbase-shaded</artifactId>
27     <groupId>org.apache.hbase</groupId>
28     <version>3.0.0-alpha-3-SNAPSHOT</version>
29     <relativePath>..</relativePath>
30   </parent>
32   <artifactId>hbase-shaded-testing-util</artifactId>
33   <name>Apache HBase - Shaded - Testing Util</name>
34   <dependencies>
35     <!-- test-jar dependencies -->
36     <dependency>
37       <groupId>org.apache.hadoop</groupId>
38       <artifactId>hadoop-common</artifactId>
39       <version>${hadoop.version}</version>
40       <type>test-jar</type>
41       <scope>compile</scope>
42       <exclusions>
43         <exclusion>
44           <groupId>javax.servlet.jsp</groupId>
45           <artifactId>jsp-api</artifactId>
46         </exclusion>
47         <exclusion>
48           <groupId>org.codehaus.jackson</groupId>
49           <artifactId>jackson-mapper-asl</artifactId>
50         </exclusion>
51         <exclusion>
52           <groupId>org.codehaus.jackson</groupId>
53           <artifactId>jackson-core-asl</artifactId>
54         </exclusion>
55         <exclusion>
56           <groupId>org.codehaus.jackson</groupId>
57           <artifactId>jackson-jaxrs</artifactId>
58         </exclusion>
59         <exclusion>
60           <groupId>org.codehaus.jackson</groupId>
61           <artifactId>jackson-xc</artifactId>
62         </exclusion>
63         <exclusion>
64           <groupId>javax.xml.bind</groupId>
65           <artifactId>jaxb-api</artifactId>
66         </exclusion>
67         <exclusion>
68           <groupId>javax.ws.rs</groupId>
69           <artifactId>jsr311-api</artifactId>
70         </exclusion>
71       </exclusions>
72     </dependency>
73     <dependency>
74       <groupId>org.apache.hadoop</groupId>
75       <artifactId>hadoop-hdfs</artifactId>
76       <type>test-jar</type>
77       <scope>compile</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.apache.hadoop</groupId>
81       <artifactId>hadoop-mapreduce-client-app</artifactId>
82       <type>test-jar</type>
83       <scope>compile</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.apache.hadoop</groupId>
87       <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
88       <type>test-jar</type>
89       <scope>compile</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.apache.hbase</groupId>
93       <artifactId>hbase-common</artifactId>
94       <type>test-jar</type>
95       <scope>compile</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.apache.hbase</groupId>
99       <artifactId>hbase-server</artifactId>
100       <type>test-jar</type>
101       <scope>compile</scope>
102       <exclusions>
103         <exclusion>
104           <groupId>javax.xml.bind</groupId>
105           <artifactId>jaxb-api</artifactId>
106         </exclusion>
107       </exclusions>
108     </dependency>
109     <dependency>
110       <groupId>org.apache.hbase</groupId>
111       <artifactId>hbase-asyncfs</artifactId>
112       <type>test-jar</type>
113       <scope>compile</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.apache.hbase</groupId>
117       <artifactId>hbase-zookeeper</artifactId>
118       <type>test-jar</type>
119       <scope>compile</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.apache.hbase</groupId>
123       <artifactId>hbase-hadoop-compat</artifactId>
124       <type>test-jar</type>
125       <scope>compile</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.codehaus.jackson</groupId>
129       <artifactId>jackson-jaxrs</artifactId>
130       <version>1.9.13</version>
131       <scope>compile</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.apache.hbase</groupId>
135       <artifactId>hbase-testing-util</artifactId>
136       <scope>compile</scope>
137       <exclusions>
138         <exclusion>
139           <groupId>javax.xml.bind</groupId>
140           <artifactId>jaxb-api</artifactId>
141         </exclusion>
142       </exclusions>
143     </dependency>
144   </dependencies>
145   <build>
146     <plugins>
147       <plugin>
148         <groupId>org.apache.maven.plugins</groupId>
149         <artifactId>maven-site-plugin</artifactId>
150         <configuration>
151           <skip>true</skip>
152         </configuration>
153       </plugin>
154       <plugin>
155         <!--Make it so assembly:single does nothing in here-->
156         <artifactId>maven-assembly-plugin</artifactId>
157         <configuration>
158           <skipAssembly>true</skipAssembly>
159         </configuration>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-shade-plugin</artifactId>
164         <executions>
165           <execution>
166             <id>aggregate-into-a-jar-with-relocated-third-parties</id>
167             <configuration>
168               <artifactSet>
169                 <excludes>
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>
179                   <!--
180                     Tell the shade plugin that in this case we want to include hadoop
181                     by leaving out the exclude.
182                   -->
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>
195                 </excludes>
196               </artifactSet>
197             </configuration>
198           </execution>
199         </executions>
200       </plugin>
201     </plugins>
202   </build>
203 </project>