HBASE-17263 Netty based rpc server impl
[hbase.git] / hbase-prefix-tree / pom.xml
blob73c3c5b17651626d82023069a53d5f25bdceade1
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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</artifactId>
25     <groupId>org.apache.hbase</groupId>
26     <version>2.0.0-SNAPSHOT</version>
27     <relativePath>..</relativePath>
28   </parent>
30   <artifactId>hbase-prefix-tree</artifactId>
31   <name>Apache HBase - Prefix Tree</name>
32   <description>Prefix Tree Data Block Encoder</description>
33 <!--REMOVE-->
35   <build>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-site-plugin</artifactId>
40         <configuration>
41           <skip>true</skip>
42         </configuration>
43       </plugin>
44       <!-- Make a jar and put the sources in the jar -->
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-source-plugin</artifactId>
48       </plugin>
49       <plugin>
50         <!--Make it so assembly:single does nothing in here-->
51         <artifactId>maven-assembly-plugin</artifactId>
52         <version>${maven.assembly.version}</version>
53         <configuration>
54           <skipAssembly>true</skipAssembly>
55         </configuration>
56       </plugin>
57     </plugins>
58     <pluginManagement>
59       <plugins>
60         <!--This plugin's configuration is used to store Eclipse m2e settings
61              only. It has no influence on the Maven build itself.-->
62         <plugin>
63           <groupId>org.eclipse.m2e</groupId>
64           <artifactId>lifecycle-mapping</artifactId>
65           <version>1.0.0</version>
66           <configuration>
67             <lifecycleMappingMetadata>
68               <pluginExecutions>
69                 <pluginExecution>
70                   <pluginExecutionFilter>
71                     <groupId>org.apache.maven.plugins</groupId>
72                     <artifactId>maven-compiler-plugin</artifactId>
73                     <versionRange>[3.2,)</versionRange>
74                     <goals>
75                       <goal>compile</goal>
76                     </goals>
77                   </pluginExecutionFilter>
78                   <action>
79                     <ignore></ignore>
80                   </action>
81                 </pluginExecution>
82               </pluginExecutions>
83             </lifecycleMappingMetadata>
84           </configuration>
85         </plugin>
86       </plugins>
87     </pluginManagement>
88   </build>
90   <dependencies>
91     <dependency>
92       <groupId>org.apache.hbase</groupId>
93       <artifactId>hbase-common</artifactId>
94       <version>${project.version}</version>
95       <classifier>tests</classifier>
96     </dependency>
97    <dependency>
98      <groupId>org.apache.hbase</groupId>
99      <artifactId>hbase-annotations</artifactId>
100       <type>test-jar</type>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.apache.hbase</groupId>
105       <artifactId>hbase-common</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.apache.hbase</groupId>
109       <artifactId>${compat.module}</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>com.google.guava</groupId>
114       <artifactId>guava</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>commons-logging</groupId>
118       <artifactId>commons-logging</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>io.netty</groupId>
122       <artifactId>netty-all</artifactId>
123     </dependency>
124   </dependencies>
126   <profiles>
127     <!-- Skip the tests in this module -->
128     <profile>
129       <id>skipPrefixTreeTests</id>
130       <activation>
131         <property>
132           <name>skipPrefixTreeTests</name>
133         </property>
134       </activation>
135       <properties>
136         <surefire.skipFirstPart>true</surefire.skipFirstPart>
137         <surefire.skipSecondPart>true</surefire.skipSecondPart>
138       </properties>
139     </profile>
140     <!-- Profiles for building against different hadoop versions -->
141     <!--
142       profile for building against Hadoop 2.0.0-alpha. Activate using:
143        mvn -Dhadoop.profile=2.0
144     -->
145     <profile>
146       <id>hadoop-2.0</id>
147       <activation>
148         <property>
149             <!--Below formatting for dev-support/generate-hadoopX-poms.sh-->
150             <!--h2--><name>!hadoop.profile</name>
151         </property>
152       </activation>
153       <dependencies>
154         <dependency>
155           <groupId>org.apache.hadoop</groupId>
156           <artifactId>hadoop-common</artifactId>
157         </dependency>
158       </dependencies>
159     </profile>
160     <!--
161       profile for building against Hadoop 3.0.x. Activate using:
162        mvn -Dhadoop.profile=3.0
163     -->
164     <profile>
165       <id>hadoop-3.0</id>
166       <activation>
167         <property>
168           <name>hadoop.profile</name>
169           <value>3.0</value>
170         </property>
171       </activation>
172       <properties>
173         <hadoop.version>3.0-SNAPSHOT</hadoop.version>
174       </properties>
175       <dependencies>
176         <dependency>
177           <groupId>org.apache.hadoop</groupId>
178           <artifactId>hadoop-common</artifactId>
179         </dependency>
180       </dependencies>
181     </profile>
182   </profiles>
183 </project>