2 <project xmlns="http://maven.apache.org/POM/4.0.0" 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>
25 <artifactId>hbase-build-configuration</artifactId>
26 <groupId>org.apache.hbase</groupId>
27 <version>3.0.0-SNAPSHOT</version>
28 <relativePath>../hbase-build-configuration</relativePath>
31 <artifactId>hbase-client</artifactId>
32 <name>Apache HBase - Client</name>
33 <description>Client of HBase</description>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-site-plugin</artifactId>
46 <!--Make it so assembly:single does nothing in here-->
47 <artifactId>maven-assembly-plugin</artifactId>
49 <skipAssembly>true</skipAssembly>
52 <!-- Make a jar and put the sources in the jar -->
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-source-plugin</artifactId>
60 <!--This plugin's configuration is used to store Eclipse m2e settings
61 only. It has no influence on the Maven build itself.-->
63 <groupId>org.eclipse.m2e</groupId>
64 <artifactId>lifecycle-mapping</artifactId>
66 <lifecycleMappingMetadata>
69 <pluginExecutionFilter>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-compiler-plugin</artifactId>
72 <versionRange>[3.2,)</versionRange>
76 </pluginExecutionFilter>
82 </lifecycleMappingMetadata>
91 <groupId>org.apache.hbase.thirdparty</groupId>
92 <artifactId>hbase-shaded-protobuf</artifactId>
94 <!-- Intra-project dependencies -->
96 <groupId>org.apache.hbase</groupId>
97 <artifactId>hbase-annotations</artifactId>
100 <groupId>jdk.tools</groupId>
101 <artifactId>jdk.tools</artifactId>
106 <groupId>org.apache.hbase</groupId>
107 <artifactId>hbase-annotations</artifactId>
108 <type>test-jar</type>
112 <groupId>org.apache.hbase</groupId>
113 <artifactId>hbase-common</artifactId>
116 <groupId>org.apache.hbase</groupId>
117 <artifactId>hbase-hadoop-compat</artifactId>
120 <groupId>org.apache.hbase</groupId>
121 <artifactId>hbase-hadoop2-compat</artifactId>
123 <!-- We don't need MR support classes here. -->
125 <groupId>org.apache.hadoop</groupId>
126 <artifactId>hadoop-mapreduce-client-core</artifactId>
131 <groupId>org.apache.hbase</groupId>
132 <artifactId>hbase-common</artifactId>
133 <type>test-jar</type>
137 <groupId>org.apache.hbase</groupId>
138 <artifactId>hbase-protocol-shaded</artifactId>
141 <groupId>org.apache.hbase</groupId>
142 <artifactId>hbase-protocol</artifactId>
144 <!-- General dependencies -->
146 <groupId>commons-codec</groupId>
147 <artifactId>commons-codec</artifactId>
150 <groupId>commons-io</groupId>
151 <artifactId>commons-io</artifactId>
154 <groupId>org.apache.commons</groupId>
155 <artifactId>commons-lang3</artifactId>
158 <groupId>commons-logging</groupId>
159 <artifactId>commons-logging</artifactId>
162 <groupId>org.apache.hbase.thirdparty</groupId>
163 <artifactId>hbase-shaded-miscellaneous</artifactId>
166 <groupId>com.google.protobuf</groupId>
167 <artifactId>protobuf-java</artifactId>
170 <groupId>org.apache.hbase.thirdparty</groupId>
171 <artifactId>hbase-shaded-netty</artifactId>
174 <groupId>org.apache.zookeeper</groupId>
175 <artifactId>zookeeper</artifactId>
178 <groupId>org.apache.htrace</groupId>
179 <artifactId>htrace-core</artifactId>
182 <groupId>org.codehaus.jackson</groupId>
183 <artifactId>jackson-mapper-asl</artifactId>
186 <groupId>org.jruby.jcodings</groupId>
187 <artifactId>jcodings</artifactId>
190 <groupId>org.jruby.joni</groupId>
191 <artifactId>joni</artifactId>
194 <groupId>log4j</groupId>
195 <artifactId>log4j</artifactId>
199 <groupId>io.dropwizard.metrics</groupId>
200 <artifactId>metrics-core</artifactId>
203 <groupId>junit</groupId>
204 <artifactId>junit</artifactId>
208 <groupId>org.mockito</groupId>
209 <artifactId>mockito-all</artifactId>
213 <groupId>org.apache.curator</groupId>
214 <artifactId>curator-framework</artifactId>
217 <groupId>org.apache.curator</groupId>
218 <artifactId>curator-client</artifactId>
221 <groupId>org.apache.commons</groupId>
222 <artifactId>commons-crypto</artifactId>
223 <version>${commons-crypto.version}</version>
226 <groupId>net.java.dev.jna</groupId>
227 <artifactId>jna</artifactId>
234 <!-- Skip the tests in this module -->
236 <id>skipClientTests</id>
239 <name>skipClientTests</name>
243 <surefire.skipFirstPart>true</surefire.skipFirstPart>
244 <surefire.skipSecondPart>true</surefire.skipSecondPart>
248 <!-- profile for building against Hadoop 2.x. This is the default -->
253 <!--Below formatting for dev-support/generate-hadoopX-poms.sh-->
254 <!--h2--><name>!hadoop.profile</name>
259 <groupId>com.github.stephenc.findbugs</groupId>
260 <artifactId>findbugs-annotations</artifactId>
261 <optional>true</optional>
264 <groupId>org.apache.hadoop</groupId>
265 <artifactId>hadoop-auth</artifactId>
268 <groupId>org.apache.hadoop</groupId>
269 <artifactId>hadoop-common</artifactId>
272 <groupId>net.java.dev.jets3t</groupId>
273 <artifactId>jets3t</artifactId>
276 <groupId>javax.servlet.jsp</groupId>
277 <artifactId>jsp-api</artifactId>
280 <groupId>org.mortbay.jetty</groupId>
281 <artifactId>jetty</artifactId>
284 <groupId>org.mortbay.jetty</groupId>
285 <artifactId>jetty-util</artifactId>
288 <groupId>com.sun.jersey</groupId>
289 <artifactId>jersey-server</artifactId>
292 <groupId>com.sun.jersey</groupId>
293 <artifactId>jersey-core</artifactId>
296 <groupId>com.sun.jersey</groupId>
297 <artifactId>jersey-json</artifactId>
300 <groupId>javax.servlet</groupId>
301 <artifactId>servlet-api</artifactId>
304 <groupId>tomcat</groupId>
305 <artifactId>jasper-compiler</artifactId>
308 <groupId>tomcat</groupId>
309 <artifactId>jasper-runtime</artifactId>
317 profile for building against Hadoop 3.0.x. Activate using:
318 mvn -Dhadoop.profile=3.0
324 <name>hadoop.profile</name>
329 <hadoop.version>3.0-SNAPSHOT</hadoop.version>
333 <groupId>org.apache.hadoop</groupId>
334 <artifactId>hadoop-auth</artifactId>
337 <groupId>org.apache.hadoop</groupId>
338 <artifactId>hadoop-common</artifactId>