HBASE-25166 MobFileCompactionChore is closing the master's shared cluster connection...
[hbase.git] / hbase-rest / pom.xml
blobd583d7aad1f52ea8c4a1459a44996113ebfafaf9
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" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <!--
4 /**
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
12  *
13  *     http://www.apache.org/licenses/LICENSE-2.0
14  *
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.
20  */
21 -->
22   <modelVersion>4.0.0</modelVersion>
23   <parent>
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>
28   </parent>
29   <artifactId>hbase-rest</artifactId>
30   <name>Apache HBase - Rest</name>
31   <description>HBase Rest Server</description>
32   <build>
33     <!-- Makes sure the resources get added before they are processed
34       by placing this first -->
35     <resources>
36       <!-- Add the build webabpps to the classpth -->
37       <resource>
38         <directory>${project.build.directory}</directory>
39         <includes>
40           <include>hbase-webapps/**</include>
41         </includes>
42       </resource>
43     </resources>
44     <testResources>
45       <testResource>
46         <directory>src/test/resources</directory>
47         <includes>
48           <include>**/**</include>
49         </includes>
50       </testResource>
51     </testResources>
52     <plugins>
53       <plugin>
54         <!--Make it so assembly:single does nothing in here-->
55         <artifactId>maven-assembly-plugin</artifactId>
56         <configuration>
57           <skipAssembly>true</skipAssembly>
58         </configuration>
59       </plugin>
60       <!-- Make a jar and put the sources in the jar -->
61       <plugin>
62         <groupId>org.apache.maven.plugins</groupId>
63         <artifactId>maven-source-plugin</artifactId>
64       </plugin>
65       <!-- General ant tasks, bound to different build phases -->
66       <plugin>
67         <artifactId>maven-antrun-plugin</artifactId>
68         <executions>
69           <!-- Generate web app sources -->
70           <execution>
71             <id>generate</id>
72             <phase>generate-sources</phase>
73             <configuration>
74               <target>
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="**/*~"/>
84                   </fileset>
85                 </copy>
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"/>
90               </target>
91             </configuration>
92             <goals>
93               <goal>run</goal>
94             </goals>
95           </execution>
96         </executions>
97       </plugin>
98       <plugin>
99         <groupId>org.codehaus.mojo</groupId>
100         <artifactId>build-helper-maven-plugin</artifactId>
101         <executions>
102           <!-- Add the generated sources -->
103           <execution>
104             <id>jspcSource-packageInfo-source</id>
105             <phase>generate-sources</phase>
106             <goals>
107               <goal>add-source</goal>
108             </goals>
109             <configuration>
110               <sources>
111                 <source>${project.build.directory}/generated-sources/java</source>
112               </sources>
113             </configuration>
114           </execution>
115         </executions>
116       </plugin>
117       <!-- Testing plugins -->
118       <plugin>
119         <artifactId>maven-surefire-plugin</artifactId>
120         <configuration>
121           <systemPropertyVariables>
122             <test.build.webapps>target/test-classes/webapps</test.build.webapps>
123           </systemPropertyVariables>
124         </configuration>
125       </plugin>
126       <plugin>
127         <groupId>net.revelc.code</groupId>
128         <artifactId>warbucks-maven-plugin</artifactId>
129       </plugin>
130     </plugins>
131   </build>
132   <dependencies>
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.-->
138     <dependency>
139       <groupId>javax.ws.rs</groupId>
140       <artifactId>javax.ws.rs-api</artifactId>
141     </dependency>
142     <!-- Intra-project dependencies -->
143     <dependency>
144       <groupId>org.apache.hbase</groupId>
145       <artifactId>hbase-logging</artifactId>
146       <type>test-jar</type>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.apache.hbase</groupId>
151       <artifactId>hbase-common</artifactId>
152       <type>jar</type>
153     </dependency>
154     <dependency>
155       <groupId>org.apache.hbase</groupId>
156       <artifactId>hbase-common</artifactId>
157       <type>test-jar</type>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>org.apache.hbase</groupId>
162       <artifactId>hbase-protocol-shaded</artifactId>
163       <type>jar</type>
164     </dependency>
165     <dependency>
166       <groupId>org.apache.hbase</groupId>
167       <artifactId>hbase-client</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.apache.hbase</groupId>
171       <artifactId>hbase-server</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.apache.hbase</groupId>
175       <artifactId>hbase-asyncfs</artifactId>
176       <type>test-jar</type>
177       <scope>test</scope>
178     </dependency>
179     <dependency>
180       <groupId>org.apache.hbase</groupId>
181       <artifactId>hbase-hadoop-compat</artifactId>
182     </dependency>
183     <!--Below MR wanted by PE-->
184     <dependency>
185       <groupId>org.apache.hbase</groupId>
186       <artifactId>hbase-mapreduce</artifactId>
187     </dependency>
188     <dependency>
189       <groupId>org.apache.hbase</groupId>
190       <artifactId>hbase-mapreduce</artifactId>
191       <type>test-jar</type>
192       <scope>test</scope>
193     </dependency>
194     <dependency>
195       <groupId>org.apache.hbase</groupId>
196       <artifactId>hbase-server</artifactId>
197       <type>test-jar</type>
198       <scope>test</scope>
199     </dependency>
200     <dependency>
201       <groupId>org.apache.hbase</groupId>
202       <artifactId>hbase-testing-util</artifactId>
203       <scope>test</scope>
204       <exclusions>
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 -->
208         <exclusion>
209          <groupId>com.sun.jersey</groupId>
210          <artifactId>jersey-core</artifactId>
211         </exclusion>
212       </exclusions>
213     </dependency>
214     <dependency>
215       <groupId>org.apache.hbase</groupId>
216       <artifactId>hbase-annotations</artifactId>
217       <type>test-jar</type>
218       <scope>test</scope>
219     </dependency>
220     <dependency>
221       <groupId>org.apache.hbase</groupId>
222       <artifactId>hbase-http</artifactId>
223       <type>test-jar</type>
224       <scope>test</scope>
225     </dependency>
226     <!-- REST dependencies -->
227     <dependency>
228       <groupId>org.apache.hbase.thirdparty</groupId>
229       <artifactId>hbase-shaded-miscellaneous</artifactId>
230     </dependency>
231     <dependency>
232       <groupId>org.apache.hbase.thirdparty</groupId>
233       <artifactId>hbase-shaded-protobuf</artifactId>
234     </dependency>
235     <dependency>
236       <groupId>org.apache.httpcomponents</groupId>
237       <artifactId>httpclient</artifactId>
238     </dependency>
239     <dependency>
240       <groupId>org.apache.httpcomponents</groupId>
241       <artifactId>httpcore</artifactId>
242     </dependency>
243     <dependency>
244       <groupId>org.apache.commons</groupId>
245       <artifactId>commons-lang3</artifactId>
246     </dependency>
247     <dependency>
248       <groupId>org.slf4j</groupId>
249       <artifactId>slf4j-api</artifactId>
250     </dependency>
251     <dependency>
252       <groupId>javax.xml.bind</groupId>
253       <artifactId>jaxb-api</artifactId>
254     </dependency>
255     <dependency>
256       <groupId>javax.servlet</groupId>
257       <artifactId>javax.servlet-api</artifactId>
258     </dependency>
259     <dependency>
260       <groupId>com.sun.activation</groupId>
261       <artifactId>javax.activation</artifactId>
262     </dependency>
263     <dependency>
264       <groupId>com.fasterxml.jackson.jaxrs</groupId>
265       <artifactId>jackson-jaxrs-json-provider</artifactId>
266     </dependency>
267     <dependency>
268       <groupId>com.fasterxml.jackson.core</groupId>
269       <artifactId>jackson-annotations</artifactId>
270     </dependency>
271     <dependency>
272       <groupId>com.fasterxml.jackson.core</groupId>
273       <artifactId>jackson-core</artifactId>
274     </dependency>
275     <dependency>
276       <groupId>com.fasterxml.jackson.core</groupId>
277       <artifactId>jackson-databind</artifactId>
278     </dependency>
279     <dependency>
280       <!-- We *might* need this for XMLStreamReader use in RemoteAdmin
281            TODO figure out if we can remove it.
282         -->
283       <groupId>org.codehaus.jettison</groupId>
284       <artifactId>jettison</artifactId>
285         <exclusions>
286           <exclusion>
287             <groupId>stax</groupId>
288             <artifactId>stax-api</artifactId>
289           </exclusion>
290         </exclusions>
291     </dependency>
292     <dependency>
293       <!--For JspC used in ant task-->
294       <groupId>org.glassfish.web</groupId>
295       <artifactId>javax.servlet.jsp</artifactId>
296     </dependency>
297     <!-- Specifically needed for jetty-jsp, included
298          to bypass version scanning that hits a bad repo
299          see HBASE-18831 -->
300     <dependency>
301       <groupId>org.glassfish</groupId>
302       <artifactId>javax.el</artifactId>
303     </dependency>
304     <dependency>
305       <groupId>org.apache.kerby</groupId>
306       <artifactId>kerb-simplekdc</artifactId>
307       <scope>test</scope>
308     </dependency>
309     <dependency>
310       <groupId>org.apache.hadoop</groupId>
311       <artifactId>hadoop-minikdc</artifactId>
312       <scope>test</scope>
313     </dependency>
314     <dependency>
315       <groupId>org.apache.kerby</groupId>
316       <artifactId>kerb-core</artifactId>
317       <scope>test</scope>
318     </dependency>
319     <dependency>
320       <groupId>commons-io</groupId>
321       <artifactId>commons-io</artifactId>
322       <scope>test</scope>
323     </dependency>
324     <dependency>
325       <groupId>junit</groupId>
326       <artifactId>junit</artifactId>
327       <scope>test</scope>
328     </dependency>
329     <dependency>
330       <groupId>org.mockito</groupId>
331       <artifactId>mockito-core</artifactId>
332       <scope>test</scope>
333     </dependency>
334     <dependency>
335       <groupId>com.github.stephenc.findbugs</groupId>
336       <artifactId>findbugs-annotations</artifactId>
337       <scope>compile</scope>
338       <optional>true</optional>
339     </dependency>
340     <!--Test-->
341     <dependency>
342       <groupId>org.bouncycastle</groupId>
343       <artifactId>bcprov-jdk15on</artifactId>
344       <scope>test</scope>
345     </dependency>
346     <dependency>
347       <groupId>org.slf4j</groupId>
348       <artifactId>jcl-over-slf4j</artifactId>
349       <scope>test</scope>
350     </dependency>
351     <dependency>
352       <groupId>org.slf4j</groupId>
353       <artifactId>jul-to-slf4j</artifactId>
354       <scope>test</scope>
355     </dependency>
356     <dependency>
357       <groupId>org.slf4j</groupId>
358       <artifactId>slf4j-log4j12</artifactId>
359       <scope>test</scope>
360     </dependency>
361     <dependency>
362       <groupId>log4j</groupId>
363       <artifactId>log4j</artifactId>
364       <scope>test</scope>
365     </dependency>
366   </dependencies>
367   <profiles>
368     <!-- Skip the tests in this module -->
369     <profile>
370       <id>skipRestTests</id>
371       <activation>
372         <property>
373           <name>skipRestTests</name>
374         </property>
375       </activation>
376       <properties>
377         <surefire.skipFirstPart>true</surefire.skipFirstPart>
378         <surefire.skipSecondPart>true</surefire.skipSecondPart>
379       </properties>
380     </profile>
381     <!-- Hadoop-specific dependencies -->
382     <profile>
383       <id>hadoop-3.0</id>
384       <activation>
385         <property><name>!hadoop.profile</name></property>
386       </activation>
387       <dependencyManagement>
388         <dependencies>
389           <dependency>
390             <groupId>org.apache.hadoop</groupId>
391             <artifactId>hadoop-yarn-server-nodemanager</artifactId>
392             <exclusions>
393               <exclusion>
394                 <groupId>com.sun.jersey</groupId>
395                 <artifactId>jersey-core</artifactId>
396               </exclusion>
397             </exclusions>
398           </dependency>
399           <dependency>
400             <groupId>org.apache.hadoop</groupId>
401             <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
402             <exclusions>
403               <exclusion>
404                 <groupId>com.sun.jersey</groupId>
405                 <artifactId>jersey-core</artifactId>
406               </exclusion>
407             </exclusions>
408           </dependency>
409           <dependency>
410             <groupId>org.apache.hadoop</groupId>
411             <artifactId>hadoop-yarn-server-timelineservice</artifactId>
412             <exclusions>
413               <exclusion>
414                 <groupId>javax.ws.rs</groupId>
415                 <artifactId>jsr311-api</artifactId>
416               </exclusion>
417             </exclusions>
418           </dependency>
419           <dependency>
420             <groupId>org.apache.hadoop</groupId>
421             <artifactId>hadoop-yarn-common</artifactId>
422             <exclusions>
423               <exclusion>
424                 <groupId>com.sun.jersey</groupId>
425                 <artifactId>jersey-core</artifactId>
426               </exclusion>
427             </exclusions>
428           </dependency>
429         </dependencies>
430       </dependencyManagement>
431       <dependencies>
432         <dependency>
433           <groupId>org.apache.hadoop</groupId>
434           <artifactId>hadoop-mapreduce-client-core</artifactId>
435           <scope>test</scope>
436           <exclusions>
437             <exclusion>
438              <groupId>com.google.guava</groupId>
439              <artifactId>guava</artifactId>
440             </exclusion>
441           </exclusions>
442         </dependency>
443         <dependency>
444           <groupId>org.apache.hadoop</groupId>
445           <artifactId>hadoop-annotations</artifactId>
446         </dependency>
447         <dependency>
448           <groupId>org.apache.hadoop</groupId>
449           <artifactId>hadoop-common</artifactId>
450         </dependency>
451         <dependency>
452           <groupId>org.apache.hadoop</groupId>
453           <artifactId>hadoop-auth</artifactId>
454         </dependency>
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.
458           -->
459         <dependency>
460           <groupId>org.glassfish.jaxb</groupId>
461           <artifactId>jaxb-runtime</artifactId>
462           <version>2.3.2</version>
463         </dependency>
464       </dependencies>
465     </profile>
466     <profile>
467       <id>eclipse-specific</id>
468       <activation>
469         <property>
470           <name>m2e.version</name>
471         </property>
472       </activation>
473       <build>
474         <pluginManagement>
475           <plugins>
476             <!--This plugin's configuration is used to store Eclipse m2e settings
477                  only. It has no influence on the Maven build itself.-->
478             <plugin>
479               <groupId>org.eclipse.m2e</groupId>
480               <artifactId>lifecycle-mapping</artifactId>
481               <configuration>
482                 <lifecycleMappingMetadata>
483                   <pluginExecutions>
484                     <pluginExecution>
485                       <pluginExecutionFilter>
486                         <groupId>org.apache.maven.plugins</groupId>
487                         <artifactId>maven-antrun-plugin</artifactId>
488                         <versionRange>[1.6,)</versionRange>
489                         <goals>
490                           <goal>run</goal>
491                         </goals>
492                       </pluginExecutionFilter>
493                       <action>
494                         <ignore/>
495                       </action>
496                     </pluginExecution>
497                   </pluginExecutions>
498                 </lifecycleMappingMetadata>
499               </configuration>
500             </plugin>
501           </plugins>
502         </pluginManagement>
503       </build>
504     </profile>
505   </profiles>
506 </project>