2 <project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file
9 * to you under the Apache License, Version 2.0 (the
10 * "License"); you may not use this file except in compliance
11 * with the License. You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
22 <modelVersion>4.0.0</modelVersion>
24 <artifactId>hbase-build-configuration</artifactId>
25 <groupId>org.apache.hbase</groupId>
26 <version>3.0.0-SNAPSHOT</version>
27 <relativePath>../hbase-build-configuration</relativePath>
29 <artifactId>hbase-rest</artifactId>
30 <name>Apache HBase - Rest</name>
31 <description>HBase Rest Server</description>
33 <!-- Makes sure the resources get added before they are processed
34 by placing this first -->
36 <!-- Add the build webabpps to the classpth -->
38 <directory>${project.build.directory}</directory>
40 <include>hbase-webapps/**</include>
46 <directory>src/test/resources</directory>
48 <include>**/**</include>
54 <!--Make it so assembly:single does nothing in here-->
55 <artifactId>maven-assembly-plugin</artifactId>
57 <skipAssembly>true</skipAssembly>
60 <!-- Make a jar and put the sources in the jar -->
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-source-plugin</artifactId>
65 <!-- General ant tasks, bound to different build phases -->
67 <artifactId>maven-antrun-plugin</artifactId>
69 <!-- Generate web app sources -->
72 <phase>generate-sources</phase>
75 <property name="build.webapps" location="${project.build.directory}/hbase-webapps"/>
76 <property name="src.webapps" location="${basedir}/src/main/resources/hbase-webapps"/>
77 <property name="generated.sources" location="${project.build.directory}/generated-sources"/>
78 <mkdir dir="${build.webapps}"/>
79 <copy todir="${build.webapps}">
80 <fileset dir="${src.webapps}">
81 <exclude name="**/*.jsp"/>
82 <exclude name="**/.*"/>
83 <exclude name="**/*~"/>
86 <!--The compile.classpath is passed in by maven -->
87 <taskdef classname="org.apache.jasper.JspC" name="jspcompiler" classpathref="maven.compile.classpath"/>
88 <mkdir dir="${build.webapps}/rest/WEB-INF"/>
89 <jspcompiler uriroot="${src.webapps}/rest" outputdir="${generated.sources}/java" package="org.apache.hadoop.hbase.generated.rest" webxml="${build.webapps}/rest/WEB-INF/web.xml"/>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>build-helper-maven-plugin</artifactId>
102 <!-- Add the generated sources -->
104 <id>jspcSource-packageInfo-source</id>
105 <phase>generate-sources</phase>
107 <goal>add-source</goal>
111 <source>${project.build.directory}/generated-sources/java</source>
117 <!-- Testing plugins -->
119 <artifactId>maven-surefire-plugin</artifactId>
121 <systemPropertyVariables>
122 <test.build.webapps>target/test-classes/webapps</test.build.webapps>
123 </systemPropertyVariables>
127 <groupId>net.revelc.code</groupId>
128 <artifactId>warbucks-maven-plugin</artifactId>
133 <!--This one is upfront to get in front of
134 any dependency that pulls in jersey-core.
135 Jersey-core has implemented version 1
136 Interfaces of what is in this dependency
137 which does version 2.-->
139 <groupId>javax.ws.rs</groupId>
140 <artifactId>javax.ws.rs-api</artifactId>
142 <!-- Intra-project dependencies -->
144 <groupId>org.apache.hbase</groupId>
145 <artifactId>hbase-logging</artifactId>
146 <type>test-jar</type>
150 <groupId>org.apache.hbase</groupId>
151 <artifactId>hbase-common</artifactId>
155 <groupId>org.apache.hbase</groupId>
156 <artifactId>hbase-common</artifactId>
157 <type>test-jar</type>
161 <groupId>org.apache.hbase</groupId>
162 <artifactId>hbase-protocol-shaded</artifactId>
166 <groupId>org.apache.hbase</groupId>
167 <artifactId>hbase-client</artifactId>
170 <groupId>org.apache.hbase</groupId>
171 <artifactId>hbase-server</artifactId>
174 <groupId>org.apache.hbase</groupId>
175 <artifactId>hbase-asyncfs</artifactId>
176 <type>test-jar</type>
180 <groupId>org.apache.hbase</groupId>
181 <artifactId>hbase-hadoop-compat</artifactId>
183 <!--Below MR wanted by PE-->
185 <groupId>org.apache.hbase</groupId>
186 <artifactId>hbase-mapreduce</artifactId>
189 <groupId>org.apache.hbase</groupId>
190 <artifactId>hbase-mapreduce</artifactId>
191 <type>test-jar</type>
195 <groupId>org.apache.hbase</groupId>
196 <artifactId>hbase-server</artifactId>
197 <type>test-jar</type>
201 <groupId>org.apache.hbase</groupId>
202 <artifactId>hbase-testing-util</artifactId>
205 <!--This dependency pulls in hadoop-minicluster
206 which pulls in the below. It messes up
207 this build at assembly time. See HBASE-22029 -->
209 <groupId>com.sun.jersey</groupId>
210 <artifactId>jersey-core</artifactId>
215 <groupId>org.apache.hbase</groupId>
216 <artifactId>hbase-annotations</artifactId>
217 <type>test-jar</type>
221 <groupId>org.apache.hbase</groupId>
222 <artifactId>hbase-http</artifactId>
223 <type>test-jar</type>
226 <!-- REST dependencies -->
228 <groupId>org.apache.hbase.thirdparty</groupId>
229 <artifactId>hbase-shaded-miscellaneous</artifactId>
232 <groupId>org.apache.hbase.thirdparty</groupId>
233 <artifactId>hbase-shaded-protobuf</artifactId>
236 <groupId>org.apache.httpcomponents</groupId>
237 <artifactId>httpclient</artifactId>
240 <groupId>org.apache.httpcomponents</groupId>
241 <artifactId>httpcore</artifactId>
244 <groupId>org.apache.commons</groupId>
245 <artifactId>commons-lang3</artifactId>
248 <groupId>org.slf4j</groupId>
249 <artifactId>slf4j-api</artifactId>
252 <groupId>javax.xml.bind</groupId>
253 <artifactId>jaxb-api</artifactId>
256 <groupId>javax.servlet</groupId>
257 <artifactId>javax.servlet-api</artifactId>
260 <groupId>com.sun.activation</groupId>
261 <artifactId>javax.activation</artifactId>
264 <groupId>com.fasterxml.jackson.jaxrs</groupId>
265 <artifactId>jackson-jaxrs-json-provider</artifactId>
268 <groupId>com.fasterxml.jackson.core</groupId>
269 <artifactId>jackson-annotations</artifactId>
272 <groupId>com.fasterxml.jackson.core</groupId>
273 <artifactId>jackson-core</artifactId>
276 <groupId>com.fasterxml.jackson.core</groupId>
277 <artifactId>jackson-databind</artifactId>
280 <!-- We *might* need this for XMLStreamReader use in RemoteAdmin
281 TODO figure out if we can remove it.
283 <groupId>org.codehaus.jettison</groupId>
284 <artifactId>jettison</artifactId>
287 <groupId>stax</groupId>
288 <artifactId>stax-api</artifactId>
293 <!--For JspC used in ant task-->
294 <groupId>org.glassfish.web</groupId>
295 <artifactId>javax.servlet.jsp</artifactId>
297 <!-- Specifically needed for jetty-jsp, included
298 to bypass version scanning that hits a bad repo
301 <groupId>org.glassfish</groupId>
302 <artifactId>javax.el</artifactId>
305 <groupId>org.apache.kerby</groupId>
306 <artifactId>kerb-simplekdc</artifactId>
310 <groupId>org.apache.hadoop</groupId>
311 <artifactId>hadoop-minikdc</artifactId>
315 <groupId>org.apache.kerby</groupId>
316 <artifactId>kerb-core</artifactId>
320 <groupId>commons-io</groupId>
321 <artifactId>commons-io</artifactId>
325 <groupId>junit</groupId>
326 <artifactId>junit</artifactId>
330 <groupId>org.mockito</groupId>
331 <artifactId>mockito-core</artifactId>
335 <groupId>com.github.stephenc.findbugs</groupId>
336 <artifactId>findbugs-annotations</artifactId>
337 <scope>compile</scope>
338 <optional>true</optional>
342 <groupId>org.bouncycastle</groupId>
343 <artifactId>bcprov-jdk15on</artifactId>
347 <groupId>org.slf4j</groupId>
348 <artifactId>jcl-over-slf4j</artifactId>
352 <groupId>org.slf4j</groupId>
353 <artifactId>jul-to-slf4j</artifactId>
357 <groupId>org.slf4j</groupId>
358 <artifactId>slf4j-log4j12</artifactId>
362 <groupId>log4j</groupId>
363 <artifactId>log4j</artifactId>
368 <!-- Skip the tests in this module -->
370 <id>skipRestTests</id>
373 <name>skipRestTests</name>
377 <surefire.skipFirstPart>true</surefire.skipFirstPart>
378 <surefire.skipSecondPart>true</surefire.skipSecondPart>
381 <!-- Hadoop-specific dependencies -->
385 <property><name>!hadoop.profile</name></property>
387 <dependencyManagement>
390 <groupId>org.apache.hadoop</groupId>
391 <artifactId>hadoop-yarn-server-nodemanager</artifactId>
394 <groupId>com.sun.jersey</groupId>
395 <artifactId>jersey-core</artifactId>
400 <groupId>org.apache.hadoop</groupId>
401 <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
404 <groupId>com.sun.jersey</groupId>
405 <artifactId>jersey-core</artifactId>
410 <groupId>org.apache.hadoop</groupId>
411 <artifactId>hadoop-yarn-server-timelineservice</artifactId>
414 <groupId>javax.ws.rs</groupId>
415 <artifactId>jsr311-api</artifactId>
420 <groupId>org.apache.hadoop</groupId>
421 <artifactId>hadoop-yarn-common</artifactId>
424 <groupId>com.sun.jersey</groupId>
425 <artifactId>jersey-core</artifactId>
430 </dependencyManagement>
433 <groupId>org.apache.hadoop</groupId>
434 <artifactId>hadoop-mapreduce-client-core</artifactId>
438 <groupId>com.google.guava</groupId>
439 <artifactId>guava</artifactId>
444 <groupId>org.apache.hadoop</groupId>
445 <artifactId>hadoop-annotations</artifactId>
448 <groupId>org.apache.hadoop</groupId>
449 <artifactId>hadoop-common</artifactId>
452 <groupId>org.apache.hadoop</groupId>
453 <artifactId>hadoop-auth</artifactId>
455 <!--Needed when jdk11/hadoop3 else complaint about
456 NoSuchMethodError: 'java.util.Map javax.ws.rs.core.Application.getProperties()'
457 when REST server is started.
460 <groupId>org.glassfish.jaxb</groupId>
461 <artifactId>jaxb-runtime</artifactId>
462 <version>2.3.2</version>
467 <id>eclipse-specific</id>
470 <name>m2e.version</name>
476 <!--This plugin's configuration is used to store Eclipse m2e settings
477 only. It has no influence on the Maven build itself.-->
479 <groupId>org.eclipse.m2e</groupId>
480 <artifactId>lifecycle-mapping</artifactId>
482 <lifecycleMappingMetadata>
485 <pluginExecutionFilter>
486 <groupId>org.apache.maven.plugins</groupId>
487 <artifactId>maven-antrun-plugin</artifactId>
488 <versionRange>[1.6,)</versionRange>
492 </pluginExecutionFilter>
498 </lifecycleMappingMetadata>