HBASE-26908 Remove warnings from meta replicas feature references in the HBase book...
[hbase.git] / hbase-asyncfs / pom.xml
blob073eec750d3365cbef705af7b5930201d215e71f
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-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.apache.logging.log4j</groupId>
153       <artifactId>log4j-api</artifactId>
154       <scope>test</scope>
155     </dependency>
156     <dependency>
157       <groupId>org.apache.logging.log4j</groupId>
158       <artifactId>log4j-core</artifactId>
159       <scope>test</scope>
160     </dependency>
161     <dependency>
162       <groupId>org.apache.logging.log4j</groupId>
163       <artifactId>log4j-slf4j-impl</artifactId>
164       <scope>test</scope>
165     </dependency>
166     <dependency>
167       <groupId>org.apache.logging.log4j</groupId>
168       <artifactId>log4j-1.2-api</artifactId>
169       <scope>test</scope>
170     </dependency>
171   </dependencies>
173   <profiles>
174     <!-- Profiles for building against different hadoop versions -->
175     <profile>
176       <id>hadoop-3.0</id>
177       <activation>
178         <property><name>!hadoop.profile</name></property>
179       </activation>
180       <dependencies>
181         <dependency>
182           <groupId>org.apache.hadoop</groupId>
183           <artifactId>hadoop-common</artifactId>
184         </dependency>
185         <dependency>
186           <groupId>org.apache.hadoop</groupId>
187           <artifactId>hadoop-hdfs</artifactId>
188         </dependency>
189         <dependency>
190           <groupId>org.apache.hadoop</groupId>
191           <artifactId>hadoop-hdfs-client</artifactId>
192         </dependency>
193         <dependency>
194           <groupId>org.apache.hadoop</groupId>
195           <artifactId>hadoop-hdfs</artifactId>
196           <type>test-jar</type>
197           <scope>test</scope>
198         </dependency>
199         <dependency>
200           <groupId>org.apache.hadoop</groupId>
201           <artifactId>hadoop-annotations</artifactId>
202         </dependency>
203         <dependency>
204           <groupId>org.apache.hadoop</groupId>
205           <artifactId>hadoop-minicluster</artifactId>
206           <scope>test</scope>
207         </dependency>
208       </dependencies>
209     </profile>
210     <profile>
211       <id>eclipse-specific</id>
212       <activation>
213         <property>
214           <name>m2e.version</name>
215         </property>
216       </activation>
217       <build>
218         <pluginManagement>
219           <plugins>
220             <!--This plugin's configuration is used to store Eclipse m2e settings
221                  only. It has no influence on the Maven build itself.-->
222             <plugin>
223               <groupId>org.eclipse.m2e</groupId>
224               <artifactId>lifecycle-mapping</artifactId>
225               <configuration>
226                 <lifecycleMappingMetadata>
227                   <pluginExecutions>
228                   </pluginExecutions>
229                 </lifecycleMappingMetadata>
230               </configuration>
231             </plugin>
232           </plugins>
233         </pluginManagement>
234       </build>
235     </profile>
236   </profiles>
237 </project>