HBASE-23881 Ensure Netty client receives at least one response before considering...
[hbase.git] / hbase-balancer / pom.xml
blobfba72eb4dd06bbd161b0c5230956fe9e35af85f8
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-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-common</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.apache.hbase</groupId>
83       <artifactId>hbase-client</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.slf4j</groupId>
87       <artifactId>slf4j-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>com.github.stephenc.findbugs</groupId>
91       <artifactId>findbugs-annotations</artifactId>
92       <scope>compile</scope>
93       <optional>true</optional>
94     </dependency>
95     <dependency>
96       <groupId>junit</groupId>
97       <artifactId>junit</artifactId>
98       <scope>test</scope>
99     </dependency>
100   </dependencies>
102   <profiles>
103     <!-- Profiles for building against different hadoop versions -->
105     <!-- profile for building against Hadoop 2.x.  This is the default -->
106     <profile>
107       <id>hadoop-2.0</id>
108       <activation>
109         <property>
110           <!--Below formatting for dev-support/generate-hadoopX-poms.sh-->
111           <!--h2-->
112           <name>!hadoop.profile</name>
113         </property>
114       </activation>
115       <dependencies>
116         <dependency>
117           <groupId>org.apache.hadoop</groupId>
118           <artifactId>hadoop-common</artifactId>
119         </dependency>
120       </dependencies>
121     </profile>
122     <!--
123       profile for building against Hadoop 3.0.x. Activate using:
124        mvn -Dhadoop.profile=3.0
125     -->
126     <profile>
127       <id>hadoop-3.0</id>
128       <activation>
129         <property>
130           <name>hadoop.profile</name>
131           <value>3.0</value>
132         </property>
133       </activation>
134       <dependencies>
135         <dependency>
136           <groupId>org.apache.hadoop</groupId>
137           <artifactId>hadoop-common</artifactId>
138         </dependency>
139       </dependencies>
140     </profile>
141     <profile>
142       <id>eclipse-specific</id>
143       <activation>
144         <property>
145           <name>m2e.version</name>
146         </property>
147       </activation>
148       <build>
149         <pluginManagement>
150           <plugins>
151             <!--This plugin's configuration is used to store Eclipse m2e settings
152                  only. It has no influence on the Maven build itself.-->
153             <plugin>
154               <groupId>org.eclipse.m2e</groupId>
155               <artifactId>lifecycle-mapping</artifactId>
156               <configuration>
157                 <lifecycleMappingMetadata>
158                   <pluginExecutions>
159                   </pluginExecutions>
160                 </lifecycleMappingMetadata>
161               </configuration>
162             </plugin>
163           </plugins>
164         </pluginManagement>
165       </build>
166     </profile>
167   </profiles>
168 </project>