HBASE-24794 hbase.rowlock.wait.duration should not be <= 0 (#2174)
[hbase.git] / hbase-balancer / pom.xml
blob2fcbc2bc0c8cef41aa7d1ab25b6e07dd6f1cc876
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     <dependency>
101       <groupId>org.slf4j</groupId>
102       <artifactId>jcl-over-slf4j</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.slf4j</groupId>
107       <artifactId>jul-to-slf4j</artifactId>
108       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.slf4j</groupId>
112       <artifactId>slf4j-log4j12</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>log4j</groupId>
117       <artifactId>log4j</artifactId>
118       <scope>test</scope>
119     </dependency>
120   </dependencies>
122   <profiles>
123     <!-- Profiles for building against different hadoop versions -->
124     <profile>
125       <id>hadoop-3.0</id>
126       <activation>
127         <property><name>!hadoop.profile</name></property>
128       </activation>
129       <dependencies>
130         <dependency>
131           <groupId>org.apache.hadoop</groupId>
132           <artifactId>hadoop-common</artifactId>
133         </dependency>
134       </dependencies>
135     </profile>
136     <profile>
137       <id>eclipse-specific</id>
138       <activation>
139         <property>
140           <name>m2e.version</name>
141         </property>
142       </activation>
143       <build>
144         <pluginManagement>
145           <plugins>
146             <!--This plugin's configuration is used to store Eclipse m2e settings
147                  only. It has no influence on the Maven build itself.-->
148             <plugin>
149               <groupId>org.eclipse.m2e</groupId>
150               <artifactId>lifecycle-mapping</artifactId>
151               <configuration>
152                 <lifecycleMappingMetadata>
153                   <pluginExecutions>
154                   </pluginExecutions>
155                 </lifecycleMappingMetadata>
156               </configuration>
157             </plugin>
158           </plugins>
159         </pluginManagement>
160       </build>
161     </profile>
162   </profiles>
163 </project>