HBASE-26916 Fix missing braces warnings in DefaultVisibilityExpressionResolver (...
[hbase.git] / hbase-replication / pom.xml
blob9405d5367b048044016c1d5f589facfbe51a3edd
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>
30   <artifactId>hbase-replication</artifactId>
31   <name>Apache HBase - Replication</name>
32   <description>HBase Replication Support</description>
34   <build>
35     <plugins>
36       <plugin>
37         <!--Make it so assembly:single does nothing in here-->
38         <artifactId>maven-assembly-plugin</artifactId>
39         <configuration>
40           <skipAssembly>true</skipAssembly>
41         </configuration>
42       </plugin>
43       <!-- Make a jar and put the sources in the jar -->
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-source-plugin</artifactId>
47       </plugin>
48       <plugin>
49         <groupId>org.apache.maven.plugins</groupId>
50         <artifactId>maven-checkstyle-plugin</artifactId>
51         <configuration>
52           <failOnViolation>true</failOnViolation>
53         </configuration>
54       </plugin>
55       <plugin>
56         <groupId>net.revelc.code</groupId>
57         <artifactId>warbucks-maven-plugin</artifactId>
58       </plugin>
59     </plugins>
60   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.apache.hbase.thirdparty</groupId>
65       <artifactId>hbase-shaded-miscellaneous</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.apache.hbase.thirdparty</groupId>
69       <artifactId>hbase-shaded-protobuf</artifactId>
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-protocol-shaded</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.apache.hbase</groupId>
89       <artifactId>hbase-common</artifactId>
90     </dependency>
91     <!-- Intra-project dependencies -->
92     <dependency>
93       <groupId>org.apache.hbase</groupId>
94       <artifactId>hbase-client</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.hbase</groupId>
98       <artifactId>hbase-zookeeper</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.apache.hbase</groupId>
102       <artifactId>hbase-common</artifactId>
103       <type>test-jar</type>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.apache.hbase</groupId>
108       <artifactId>hbase-zookeeper</artifactId>
109       <type>test-jar</type>
110       <scope>test</scope>
111     </dependency>
112     <!-- General dependencies -->
113     <dependency>
114       <groupId>org.apache.commons</groupId>
115       <artifactId>commons-lang3</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.slf4j</groupId>
119       <artifactId>slf4j-api</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.apache.zookeeper</groupId>
123       <artifactId>zookeeper</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>junit</groupId>
127       <artifactId>junit</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.mockito</groupId>
132       <artifactId>mockito-core</artifactId>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.slf4j</groupId>
137       <artifactId>jcl-over-slf4j</artifactId>
138       <scope>test</scope>
139     </dependency>
140     <dependency>
141       <groupId>org.slf4j</groupId>
142       <artifactId>jul-to-slf4j</artifactId>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.apache.logging.log4j</groupId>
147       <artifactId>log4j-api</artifactId>
148       <scope>test</scope>
149     </dependency>
150     <dependency>
151       <groupId>org.apache.logging.log4j</groupId>
152       <artifactId>log4j-core</artifactId>
153       <scope>test</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.apache.logging.log4j</groupId>
157       <artifactId>log4j-slf4j-impl</artifactId>
158       <scope>test</scope>
159     </dependency>
160   </dependencies>
162   <profiles>
163     <!-- Profile for building against Hadoop 3.0.0. Activate by default -->
164     <profile>
165       <id>hadoop-3.0</id>
166       <activation>
167         <property><name>!hadoop.profile</name></property>
168       </activation>
169       <properties>
170         <hadoop.version>${hadoop-three.version}</hadoop.version>
171       </properties>
172       <dependencies>
173         <dependency>
174           <groupId>org.apache.hadoop</groupId>
175           <artifactId>hadoop-common</artifactId>
176         </dependency>
177       </dependencies>
178     </profile>
179     <profile>
180       <id>eclipse-specific</id>
181       <activation>
182         <property>
183           <name>m2e.version</name>
184         </property>
185       </activation>
186       <build>
187         <pluginManagement>
188           <plugins>
189             <!--This plugin's configuration is used to store Eclipse m2e settings
190                  only. It has no influence on the Maven build itself.-->
191             <plugin>
192               <groupId>org.eclipse.m2e</groupId>
193               <artifactId>lifecycle-mapping</artifactId>
194               <configuration>
195                 <lifecycleMappingMetadata>
196                   <pluginExecutions>
197                   </pluginExecutions>
198                 </lifecycleMappingMetadata>
199               </configuration>
200             </plugin>
201           </plugins>
202         </pluginManagement>
203       </build>
204     </profile>
205   </profiles>
206 </project>