HBASE-23337 Release scripts should rely on maven for deploy. (#887)
[hbase.git] / hbase-hbtop / pom.xml
blob73f98c0a9704370c234abb98e8c2d4a8d11be428
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <!--
6   /**
7    * Licensed to the Apache Software Foundation (ASF) under one
8    * or more contributor license agreements.  See the NOTICE file
9    * distributed with this work for additional information
10    * regarding copyright ownership.  The ASF licenses this file
11    * to you under the Apache License, Version 2.0 (the
12    * "License"); you may not use this file except in compliance
13    * with the License.  You may obtain a copy of the License at
14    *
15    *     http://www.apache.org/licenses/LICENSE-2.0
16    *
17    * Unless required by applicable law or agreed to in writing, software
18    * distributed under the License is distributed on an "AS IS" BASIS,
19    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20    * See the License for the specific language governing permissions and
21    * limitations under the License.
22    */
23   -->
24   <modelVersion>4.0.0</modelVersion>
25   <parent>
26     <artifactId>hbase-build-configuration</artifactId>
27     <groupId>org.apache.hbase</groupId>
28     <version>3.0.0-SNAPSHOT</version>
29     <relativePath>../hbase-build-configuration</relativePath>
30   </parent>
31   <artifactId>hbase-hbtop</artifactId>
32   <name>Apache HBase - HBTop</name>
33   <description>A real-time monitoring tool for HBase like Unix's top command</description>
34   <build>
35     <plugins>
36       <!-- Make a jar and put the sources in the jar -->
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-source-plugin</artifactId>
40       </plugin>
41     </plugins>
42   </build>
43   <dependencies>
44     <dependency>
45       <groupId>org.apache.hbase</groupId>
46       <artifactId>hbase-shaded-client</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.commons</groupId>
50       <artifactId>commons-lang3</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>com.github.stephenc.findbugs</groupId>
54       <artifactId>findbugs-annotations</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.slf4j</groupId>
58       <artifactId>slf4j-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.hamcrest</groupId>
67       <artifactId>hamcrest-core</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.apache.hbase</groupId>
72       <artifactId>hbase-common</artifactId>
73       <type>test-jar</type>
74       <scope>test</scope>
75     </dependency>
76   </dependencies>
77 </project>