Revert "Preparing development version 2.4.11-SNAPSHOT"
[hbase.git] / hbase-hbtop / pom.xml
blob690b05b5913ed5864ee9d444f20ece02479ab1d0
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>2.4.10-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       <scope>compile</scope>
56       <optional>true</optional>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.mockito</groupId>
64       <artifactId>mockito-core</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.hamcrest</groupId>
69       <artifactId>hamcrest-core</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.apache.hbase</groupId>
74       <artifactId>hbase-logging</artifactId>
75       <type>test-jar</type>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.apache.hbase</groupId>
80       <artifactId>hbase-common</artifactId>
81       <type>test-jar</type>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.slf4j</groupId>
86       <artifactId>jcl-over-slf4j</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.slf4j</groupId>
91       <artifactId>jul-to-slf4j</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.slf4j</groupId>
96       <artifactId>slf4j-log4j12</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>log4j</groupId>
101       <artifactId>log4j</artifactId>
102       <scope>test</scope>
103     </dependency>
104   </dependencies>
105 </project>