HBASE-26921 Rewrite the counting cells part in TestMultiVersions (#4316)
[hbase.git] / hbase-balancer / pom.xml
blob9a0250bb9b892fca4f3bb13536704e70668f1028
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"
3          xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <!--
5   /**
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
13    *
14    *     http://www.apache.org/licenses/LICENSE-2.0
15    *
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.
21    */
22   -->
23   <modelVersion>4.0.0</modelVersion>
24   <parent>
25     <artifactId>hbase-build-configuration</artifactId>
26     <groupId>org.apache.hbase</groupId>
27     <version>3.0.0-alpha-3-SNAPSHOT</version>
28     <relativePath>../hbase-build-configuration</relativePath>
29   </parent>
31   <artifactId>hbase-balancer</artifactId>
32   <name>Apache HBase - Balancer</name>
33   <description>HBase Balancer Support</description>
34   <!--REMOVE-->
36   <build>
37     <plugins>
38       <!-- Make a jar and put the sources in the jar -->
39       <plugin>
40         <groupId>org.apache.maven.plugins</groupId>
41         <artifactId>maven-source-plugin</artifactId>
42       </plugin>
43       <plugin>
44         <!--Make it so assembly:single does nothing in here-->
45         <artifactId>maven-assembly-plugin</artifactId>
46         <configuration>
47           <skipAssembly>true</skipAssembly>
48         </configuration>
49       </plugin>
50       <plugin>
51         <groupId>net.revelc.code</groupId>
52         <artifactId>warbucks-maven-plugin</artifactId>
53       </plugin>
54       <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-checkstyle-plugin</artifactId>
57         <configuration>
58           <failOnViolation>true</failOnViolation>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
64   <dependencies>
65     <dependency>
66       <groupId>org.apache.hbase</groupId>
67       <artifactId>hbase-common</artifactId>
68       <type>test-jar</type>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.apache.hbase</groupId>
73       <artifactId>hbase-annotations</artifactId>
74       <type>test-jar</type>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.apache.hbase</groupId>
79       <artifactId>hbase-logging</artifactId>
80       <type>test-jar</type>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.apache.hbase</groupId>
85       <artifactId>hbase-common</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.apache.hbase</groupId>
89       <artifactId>hbase-client</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.apache.hadoop</groupId>
93       <artifactId>hadoop-hdfs-client</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.apache.hadoop</groupId>
97       <artifactId>hadoop-hdfs</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.slf4j</groupId>
101       <artifactId>slf4j-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.agrona</groupId>
105       <artifactId>agrona</artifactId>
106       <version>1.12.0</version>
107     </dependency>
108     <dependency>
109       <groupId>com.github.stephenc.findbugs</groupId>
110       <artifactId>findbugs-annotations</artifactId>
111       <scope>compile</scope>
112       <optional>true</optional>
113     </dependency>
114     <dependency>
115       <groupId>org.mockito</groupId>
116       <artifactId>mockito-core</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>junit</groupId>
121       <artifactId>junit</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.slf4j</groupId>
126       <artifactId>jcl-over-slf4j</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.slf4j</groupId>
131       <artifactId>jul-to-slf4j</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.apache.logging.log4j</groupId>
136       <artifactId>log4j-api</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.apache.logging.log4j</groupId>
141       <artifactId>log4j-core</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.apache.logging.log4j</groupId>
146       <artifactId>log4j-slf4j-impl</artifactId>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.apache.logging.log4j</groupId>
151       <artifactId>log4j-1.2-api</artifactId>
152       <scope>test</scope>
153     </dependency>
154   </dependencies>
156   <profiles>
157     <!-- Profiles for building against different hadoop versions -->
158     <profile>
159       <id>hadoop-3.0</id>
160       <activation>
161         <property><name>!hadoop.profile</name></property>
162       </activation>
163       <dependencies>
164         <dependency>
165           <groupId>org.apache.hadoop</groupId>
166           <artifactId>hadoop-common</artifactId>
167         </dependency>
168       </dependencies>
169     </profile>
170     <profile>
171       <id>eclipse-specific</id>
172       <activation>
173         <property>
174           <name>m2e.version</name>
175         </property>
176       </activation>
177       <build>
178         <pluginManagement>
179           <plugins>
180             <!--This plugin's configuration is used to store Eclipse m2e settings
181                  only. It has no influence on the Maven build itself.-->
182             <plugin>
183               <groupId>org.eclipse.m2e</groupId>
184               <artifactId>lifecycle-mapping</artifactId>
185               <configuration>
186                 <lifecycleMappingMetadata>
187                   <pluginExecutions>
188                   </pluginExecutions>
189                 </lifecycleMappingMetadata>
190               </configuration>
191             </plugin>
192           </plugins>
193         </pluginManagement>
194       </build>
195     </profile>
196   </profiles>
197 </project>