HBASE-26703 Allow configuration of IPC queue balancer (#4063)
[hbase.git] / hbase-client / pom.xml
blob885085c5ff8cfc9810ef10ba276893b13b26cf68
1 <?xml version="1.0"?>
2 <project xmlns="https://maven.apache.org/POM/4.0.0" 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">
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>
24   <parent>
25     <artifactId>hbase-build-configuration</artifactId>
26     <groupId>org.apache.hbase</groupId>
27     <version>3.0.0-alpha-3-SNAPSHOT</version>
28     <relativePath>../hbase-build-configuration</relativePath>
29   </parent>
31   <artifactId>hbase-client</artifactId>
32   <name>Apache HBase - Client</name>
33   <description>Client of HBase</description>
34 <!--REMOVE-->
36   <build>
37     <plugins>
38       <plugin>
39         <!--Make it so assembly:single does nothing in here-->
40         <artifactId>maven-assembly-plugin</artifactId>
41         <configuration>
42           <skipAssembly>true</skipAssembly>
43         </configuration>
44       </plugin>
45       <!-- Make a jar and put the sources in the jar -->
46       <plugin>
47         <groupId>org.apache.maven.plugins</groupId>
48         <artifactId>maven-source-plugin</artifactId>
49       </plugin>
50       <plugin>
51         <groupId>net.revelc.code</groupId>
52         <artifactId>warbucks-maven-plugin</artifactId>
53       </plugin>
54     </plugins>
55   </build>
57   <dependencies>
58     <dependency>
59       <groupId>org.apache.hbase.thirdparty</groupId>
60       <artifactId>hbase-shaded-protobuf</artifactId>
61     </dependency>
62     <!-- Intra-project dependencies -->
63     <dependency>
64       <groupId>org.apache.hbase</groupId>
65       <artifactId>hbase-annotations</artifactId>
66       <type>test-jar</type>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.apache.hbase</groupId>
71       <artifactId>hbase-logging</artifactId>
72       <type>test-jar</type>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.apache.hbase</groupId>
77       <artifactId>hbase-common</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.apache.hbase</groupId>
81       <artifactId>hbase-hadoop-compat</artifactId>
82       <exclusions>
83         <!-- We don't need MR support classes here. -->
84         <exclusion>
85           <groupId>org.apache.hadoop</groupId>
86           <artifactId>hadoop-mapreduce-client-core</artifactId>
87         </exclusion>
88       </exclusions>
89     </dependency>
90     <dependency>
91       <groupId>org.apache.hbase</groupId>
92       <artifactId>hbase-common</artifactId>
93       <type>test-jar</type>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.hbase</groupId>
98       <artifactId>hbase-protocol-shaded</artifactId>
99     </dependency>
100     <!-- General dependencies -->
101     <dependency>
102       <groupId>com.github.stephenc.findbugs</groupId>
103       <artifactId>findbugs-annotations</artifactId>
104       <scope>compile</scope>
105       <optional>true</optional>
106     </dependency>
107     <dependency>
108       <groupId>commons-codec</groupId>
109       <artifactId>commons-codec</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>commons-io</groupId>
113       <artifactId>commons-io</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.apache.commons</groupId>
117       <artifactId>commons-lang3</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.slf4j</groupId>
121       <artifactId>slf4j-api</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.apache.hbase.thirdparty</groupId>
125       <artifactId>hbase-shaded-miscellaneous</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.apache.hbase.thirdparty</groupId>
129       <artifactId>hbase-shaded-netty</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.apache.zookeeper</groupId>
133       <artifactId>zookeeper</artifactId>
134     </dependency>
135     <dependency>
136       <groupId>io.opentelemetry</groupId>
137       <artifactId>opentelemetry-api</artifactId>
138     </dependency>
139     <dependency>
140       <groupId>org.jruby.jcodings</groupId>
141       <artifactId>jcodings</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>org.jruby.joni</groupId>
145       <artifactId>joni</artifactId>
146     </dependency>
147     <dependency>
148       <groupId>io.opentelemetry</groupId>
149       <artifactId>opentelemetry-sdk</artifactId>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>io.opentelemetry</groupId>
154       <artifactId>opentelemetry-sdk-testing</artifactId>
155       <scope>test</scope>
156     </dependency>
157     <dependency>
158       <groupId>org.slf4j</groupId>
159       <artifactId>jcl-over-slf4j</artifactId>
160       <scope>test</scope>
161     </dependency>
162     <dependency>
163       <groupId>org.slf4j</groupId>
164       <artifactId>jul-to-slf4j</artifactId>
165       <scope>test</scope>
166     </dependency>
167     <dependency>
168       <groupId>org.apache.logging.log4j</groupId>
169       <artifactId>log4j-api</artifactId>
170       <scope>test</scope>
171     </dependency>
172     <dependency>
173       <groupId>org.apache.logging.log4j</groupId>
174       <artifactId>log4j-core</artifactId>
175       <scope>test</scope>
176     </dependency>
177     <dependency>
178       <groupId>org.apache.logging.log4j</groupId>
179       <artifactId>log4j-slf4j-impl</artifactId>
180       <scope>test</scope>
181     </dependency>
182     <dependency>
183       <groupId>io.dropwizard.metrics</groupId>
184       <artifactId>metrics-core</artifactId>
185     </dependency>
186     <dependency>
187       <groupId>junit</groupId>
188       <artifactId>junit</artifactId>
189       <scope>test</scope>
190     </dependency>
191     <dependency>
192       <groupId>org.mockito</groupId>
193       <artifactId>mockito-core</artifactId>
194       <scope>test</scope>
195     </dependency>
196     <dependency>
197       <groupId>org.hamcrest</groupId>
198       <artifactId>hamcrest-library</artifactId>
199       <scope>test</scope>
200     </dependency>
201     <dependency>
202       <groupId>org.apache.commons</groupId>
203       <artifactId>commons-crypto</artifactId>
204       <exclusions>
205         <exclusion>
206           <groupId>net.java.dev.jna</groupId>
207           <artifactId>jna</artifactId>
208         </exclusion>
209       </exclusions>
210     </dependency>
211   </dependencies>
213   <profiles>
214     <!-- Skip the tests in this module -->
215     <profile>
216       <id>skipClientTests</id>
217       <activation>
218         <property>
219           <name>skipClientTests</name>
220         </property>
221       </activation>
222       <properties>
223         <surefire.skipFirstPart>true</surefire.skipFirstPart>
224         <surefire.skipSecondPart>true</surefire.skipSecondPart>
225       </properties>
226     </profile>
227     <!-- Profile for building against Hadoop 3.0.0. Activate by default -->
228     <profile>
229       <id>hadoop-3.0</id>
230       <activation>
231         <property><name>!hadoop.profile</name></property>
232       </activation>
233       <dependencies>
234         <dependency>
235           <groupId>org.apache.hadoop</groupId>
236           <artifactId>hadoop-auth</artifactId>
237         </dependency>
238         <dependency>
239           <groupId>org.apache.hadoop</groupId>
240           <artifactId>hadoop-common</artifactId>
241           <exclusions>
242             <exclusion>
243               <groupId>net.java.dev.jets3t</groupId>
244               <artifactId>jets3t</artifactId>
245             </exclusion>
246             <exclusion>
247               <groupId>javax.servlet.jsp</groupId>
248               <artifactId>jsp-api</artifactId>
249             </exclusion>
250             <exclusion>
251               <groupId>org.eclipse.jetty</groupId>
252               <artifactId>jetty-server</artifactId>
253             </exclusion>
254             <exclusion>
255               <groupId>org.eclipse.jetty</groupId>
256               <artifactId>jetty-servlet</artifactId>
257             </exclusion>
258             <exclusion>
259               <groupId>org.eclipse.jetty</groupId>
260               <artifactId>jetty-webapp</artifactId>
261             </exclusion>
262             <exclusion>
263               <groupId>org.eclipse.jetty</groupId>
264               <artifactId>jetty-util</artifactId>
265             </exclusion>
266             <exclusion>
267               <groupId>com.sun.jersey</groupId>
268               <artifactId>jersey-server</artifactId>
269             </exclusion>
270             <exclusion>
271               <groupId>com.sun.jersey</groupId>
272               <artifactId>jersey-core</artifactId>
273             </exclusion>
274             <exclusion>
275               <groupId>com.sun.jersey</groupId>
276               <artifactId>jersey-json</artifactId>
277             </exclusion>
278             <exclusion>
279               <groupId>javax.servlet</groupId>
280               <artifactId>servlet-api</artifactId>
281             </exclusion>
282             <exclusion>
283               <groupId>tomcat</groupId>
284               <artifactId>jasper-compiler</artifactId>
285             </exclusion>
286             <exclusion>
287               <groupId>tomcat</groupId>
288               <artifactId>jasper-runtime</artifactId>
289             </exclusion>
290             <exclusion>
291               <groupId>javax.xml.bind</groupId>
292               <artifactId>jaxb-api</artifactId>
293             </exclusion>
294             <exclusion>
295               <groupId>javax.ws.rs</groupId>
296               <artifactId>jsr311-api</artifactId>
297             </exclusion>
298           </exclusions>
299         </dependency>
300       </dependencies>
301     </profile>
302     <profile>
303       <id>eclipse-specific</id>
304       <activation>
305         <property>
306           <name>m2e.version</name>
307         </property>
308       </activation>
309       <build>
310         <pluginManagement>
311           <plugins>
312             <!--This plugin's configuration is used to store Eclipse m2e settings
313                  only. It has no influence on the Maven build itself.-->
314             <plugin>
315               <groupId>org.eclipse.m2e</groupId>
316               <artifactId>lifecycle-mapping</artifactId>
317               <configuration>
318                 <lifecycleMappingMetadata>
319                   <pluginExecutions>
320                   </pluginExecutions>
321                 </lifecycleMappingMetadata>
322               </configuration>
323             </plugin>
324           </plugins>
325         </pluginManagement>
326       </build>
327     </profile>
328   </profiles>
329 </project>