HBASE-25750 Upgrade RpcControllerFactory and HBaseRpcController from Private to Limit...
[hbase.git] / hbase-hadoop-compat / pom.xml
blob749f3313f88db1ad05462c40ca117c52301f514a
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" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <!--
4     /**
5      * Licensed to the Apache Software Foundation (ASF) under one
6      * or more contributor license agreements.  See the NOTICE file
7      * distributed with this work for additional information
8      * regarding copyright ownership.  The ASF licenses this file
9      * to you under the Apache License, Version 2.0 (the
10      * "License"); you may not use this file except in compliance
11      * with the License.  You may obtain a copy of the License at
12      *
13      *     http://www.apache.org/licenses/LICENSE-2.0
14      *
15      * Unless required by applicable law or agreed to in writing, software
16      * distributed under the License is distributed on an "AS IS" BASIS,
17      * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18      * See the License for the specific language governing permissions and
19      * limitations under the License.
20      */
21     -->
22     <modelVersion>4.0.0</modelVersion>
23     <parent>
24         <artifactId>hbase-build-configuration</artifactId>
25         <groupId>org.apache.hbase</groupId>
26         <version>2.4.3-SNAPSHOT</version>
27         <relativePath>../hbase-build-configuration</relativePath>
28     </parent>
30     <artifactId>hbase-hadoop-compat</artifactId>
31     <name>Apache HBase - Hadoop Compatibility</name>
32     <description>
33         Interfaces to be implemented in order to smooth
34         over hadoop version differences
35     </description>
37     <build>
38       <plugins>
39       <plugin>
40         <!--Make it so assembly:single does nothing in here-->
41         <artifactId>maven-assembly-plugin</artifactId>
42         <configuration>
43           <skipAssembly>true</skipAssembly>
44         </configuration>
45       </plugin>
46         <!-- Make a jar and put the sources in the jar -->
47         <plugin>
48           <groupId>org.apache.maven.plugins</groupId>
49           <artifactId>maven-source-plugin</artifactId>
50         </plugin>
51           <plugin>
52               <groupId>net.revelc.code</groupId>
53               <artifactId>warbucks-maven-plugin</artifactId>
54           </plugin>
55         </plugins>
56     </build>
58     <dependencies>
59       <dependency>
60         <groupId>org.apache.hbase</groupId>
61         <artifactId>hbase-annotations</artifactId>
62         <type>test-jar</type>
63         <scope>test</scope>
64       </dependency>
65       <dependency>
66         <groupId>org.apache.hbase</groupId>
67         <artifactId>hbase-logging</artifactId>
68         <type>test-jar</type>
69         <scope>test</scope>
70       </dependency>
71       <dependency>
72         <groupId>org.apache.hbase</groupId>
73         <artifactId>hbase-common</artifactId>
74         <type>test-jar</type>
75         <scope>test</scope>
76       </dependency>
77       <dependency>
78         <groupId>org.apache.hbase.thirdparty</groupId>
79         <artifactId>hbase-shaded-miscellaneous</artifactId>
80       </dependency>
81       <!-- General dependencies -->
82       <dependency>
83         <groupId>org.slf4j</groupId>
84         <artifactId>slf4j-api</artifactId>
85       </dependency>
86       <dependency>
87         <groupId>org.apache.hbase</groupId>
88         <artifactId>hbase-metrics-api</artifactId>
89       </dependency>
90       <dependency>
91         <groupId>junit</groupId>
92         <artifactId>junit</artifactId>
93         <scope>test</scope>
94       </dependency>
95       <dependency>
96         <groupId>org.slf4j</groupId>
97         <artifactId>jcl-over-slf4j</artifactId>
98         <scope>test</scope>
99       </dependency>
100       <dependency>
101         <groupId>org.slf4j</groupId>
102         <artifactId>jul-to-slf4j</artifactId>
103         <scope>test</scope>
104       </dependency>
105       <dependency>
106         <groupId>org.slf4j</groupId>
107         <artifactId>slf4j-log4j12</artifactId>
108         <scope>test</scope>
109       </dependency>
110       <dependency>
111         <groupId>log4j</groupId>
112         <artifactId>log4j</artifactId>
113         <scope>test</scope>
114       </dependency>
115     </dependencies>
117     <profiles>
118         <!-- Skip the tests in this module -->
119         <profile>
120             <id>skipHadoopCompatTests</id>
121             <activation>
122                 <property>
123                     <name>skipHadoopCompatTests</name>
124                 </property>
125             </activation>
126             <properties>
127                 <surefire.skipFirstPart>true</surefire.skipFirstPart>
128                 <surefire.skipSecondPart>true</surefire.skipSecondPart>
129             </properties>
130         </profile>
131       <profile>
132         <id>eclipse-specific</id>
133         <activation>
134           <property>
135             <name>m2e.version</name>
136           </property>
137         </activation>
138         <build>
139           <pluginManagement>
140             <plugins>
141               <!--This plugin's configuration is used to store Eclipse m2e settings
142                    only. It has no influence on the Maven build itself.-->
143               <plugin>
144                 <groupId>org.eclipse.m2e</groupId>
145                 <artifactId>lifecycle-mapping</artifactId>
146                 <configuration>
147                   <lifecycleMappingMetadata>
148                     <pluginExecutions>
149                     </pluginExecutions>
150                   </lifecycleMappingMetadata>
151                 </configuration>
152               </plugin>
153             </plugins>
154           </pluginManagement>
155         </build>
156       </profile>
157     </profiles>
159 </project>