HBASE-25588 Excessive logging of "hbase.zookeeper.useMulti is deprecated. Default...
[hbase.git] / hbase-asyncfs / pom.xml
blob2dd8f2e90848b94c4cff7a475b1db8bc5c6b584c
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>2.4.6-SNAPSHOT</version>
28     <relativePath>../hbase-build-configuration</relativePath>
29   </parent>
31   <artifactId>hbase-asyncfs</artifactId>
32   <name>Apache HBase - Asynchronous FileSystem</name>
33   <description>HBase Asynchronous FileSystem Implementation for WAL</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       <plugin>
42         <!--Make it so assembly:single does nothing in here-->
43         <artifactId>maven-assembly-plugin</artifactId>
44         <configuration>
45           <skipAssembly>true</skipAssembly>
46         </configuration>
47       </plugin>
48       <plugin>
49         <groupId>net.revelc.code</groupId>
50         <artifactId>warbucks-maven-plugin</artifactId>
51       </plugin>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-checkstyle-plugin</artifactId>
55         <configuration>
56           <failOnViolation>true</failOnViolation>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.apache.hbase</groupId>
65       <artifactId>hbase-common</artifactId>
66       <type>test-jar</type>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.apache.hbase</groupId>
71       <artifactId>hbase-annotations</artifactId>
72       <type>test-jar</type>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.apache.hbase</groupId>
77       <artifactId>hbase-logging</artifactId>
78       <type>test-jar</type>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.apache.hbase</groupId>
83       <artifactId>hbase-common</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.apache.hbase</groupId>
87       <artifactId>hbase-client</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.slf4j</groupId>
91       <artifactId>slf4j-api</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>com.github.stephenc.findbugs</groupId>
95       <artifactId>findbugs-annotations</artifactId>
96       <scope>compile</scope>
97       <optional>true</optional>
98     </dependency>
99     <dependency>
100       <groupId>junit</groupId>
101       <artifactId>junit</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.bouncycastle</groupId>
106       <artifactId>bcprov-jdk15on</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.apache.hadoop</groupId>
111       <artifactId>hadoop-minikdc</artifactId>
112       <scope>test</scope>
113       <exclusions>
114         <exclusion>
115           <groupId>bouncycastle</groupId>
116           <artifactId>bcprov-jdk15</artifactId>
117         </exclusion>
118       </exclusions>
119     </dependency>
120     <dependency>
121       <groupId>org.apache.kerby</groupId>
122       <artifactId>kerb-client</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.apache.kerby</groupId>
127       <artifactId>kerb-simplekdc</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.apache.hbase</groupId>
132       <artifactId>hbase-http</artifactId>
133       <type>test-jar</type>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.mockito</groupId>
138       <artifactId>mockito-core</artifactId>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.slf4j</groupId>
143       <artifactId>jcl-over-slf4j</artifactId>
144       <scope>test</scope>
145     </dependency>
146     <dependency>
147       <groupId>org.slf4j</groupId>
148       <artifactId>jul-to-slf4j</artifactId>
149       <scope>test</scope>
150     </dependency>
151     <dependency>
152       <groupId>org.slf4j</groupId>
153       <artifactId>slf4j-log4j12</artifactId>
154       <scope>test</scope>
155     </dependency>
156     <dependency>
157       <groupId>log4j</groupId>
158       <artifactId>log4j</artifactId>
159       <scope>test</scope>
160     </dependency>
161   </dependencies>
163   <profiles>
164     <!-- Profiles for building against different hadoop versions -->
165     <profile>
166       <id>hadoop-2.0</id>
167       <activation>
168         <property>
169             <!--Below formatting for dev-support/generate-hadoopX-poms.sh-->
170             <!--h2--><name>!hadoop.profile</name>
171         </property>
172       </activation>
173       <dependencies>
174         <dependency>
175           <groupId>org.apache.hadoop</groupId>
176           <artifactId>hadoop-common</artifactId>
177         </dependency>
178         <dependency>
179           <groupId>org.apache.hadoop</groupId>
180           <artifactId>hadoop-hdfs</artifactId>
181         </dependency>
182         <dependency>
183           <groupId>org.apache.hadoop</groupId>
184           <artifactId>hadoop-hdfs</artifactId>
185           <type>test-jar</type>
186           <scope>test</scope>
187         </dependency>
188         <dependency>
189           <groupId>org.apache.hadoop</groupId>
190           <artifactId>hadoop-annotations</artifactId>
191         </dependency>
192         <dependency>
193           <groupId>org.apache.hadoop</groupId>
194           <artifactId>hadoop-minicluster</artifactId>
195           <scope>test</scope>
196         </dependency>
197       </dependencies>
198     </profile>
199     <!--
200       profile for building against Hadoop 3.0.x. Activate using:
201        mvn -Dhadoop.profile=3.0
202     -->
203     <profile>
204       <id>hadoop-3.0</id>
205       <activation>
206         <property>
207           <name>hadoop.profile</name>
208           <value>3.0</value>
209         </property>
210       </activation>
211       <dependencies>
212         <dependency>
213           <groupId>org.apache.hadoop</groupId>
214           <artifactId>hadoop-common</artifactId>
215         </dependency>
216         <dependency>
217           <groupId>org.apache.hadoop</groupId>
218           <artifactId>hadoop-hdfs</artifactId>
219         </dependency>
220         <dependency>
221           <groupId>org.apache.hadoop</groupId>
222           <artifactId>hadoop-hdfs-client</artifactId>
223         </dependency>
224         <dependency>
225           <groupId>org.apache.hadoop</groupId>
226           <artifactId>hadoop-hdfs</artifactId>
227           <type>test-jar</type>
228           <scope>test</scope>
229         </dependency>
230         <dependency>
231           <groupId>org.apache.hadoop</groupId>
232           <artifactId>hadoop-annotations</artifactId>
233         </dependency>
234         <dependency>
235           <groupId>org.apache.hadoop</groupId>
236           <artifactId>hadoop-minicluster</artifactId>
237           <scope>test</scope>
238         </dependency>
239       </dependencies>
240     </profile>
241     <profile>
242       <id>eclipse-specific</id>
243       <activation>
244         <property>
245           <name>m2e.version</name>
246         </property>
247       </activation>
248       <build>
249         <pluginManagement>
250           <plugins>
251             <!--This plugin's configuration is used to store Eclipse m2e settings
252                  only. It has no influence on the Maven build itself.-->
253             <plugin>
254               <groupId>org.eclipse.m2e</groupId>
255               <artifactId>lifecycle-mapping</artifactId>
256               <configuration>
257                 <lifecycleMappingMetadata>
258                   <pluginExecutions>
259                   </pluginExecutions>
260                 </lifecycleMappingMetadata>
261               </configuration>
262             </plugin>
263           </plugins>
264         </pluginManagement>
265       </build>
266     </profile>
267   </profiles>
268 </project>