HBASE-26921 Rewrite the counting cells part in TestMultiVersions (#4316)
[hbase.git] / hbase-compression / hbase-compression-aircompressor / pom.xml
blobabd7237dc5fc6a515487cff8eee6beebc2895f29
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-compression</artifactId>
25     <groupId>org.apache.hbase</groupId>
26     <version>3.0.0-alpha-3-SNAPSHOT</version>
27     <relativePath>..</relativePath>
28   </parent>
29   <artifactId>hbase-compression-aircompressor</artifactId>
30   <name>Apache HBase - Compression - Aircompressor</name>
31   <description>Pure Java compression support using Aircompressor codecs</description>
32   <build>
33     <plugins>
34       <!-- Testing plugins -->
35       <plugin>
36         <artifactId>maven-surefire-plugin</artifactId>
37       </plugin>
38       <plugin>
39         <groupId>net.revelc.code</groupId>
40         <artifactId>warbucks-maven-plugin</artifactId>
41       </plugin>
42     </plugins>
43     <pluginManagement>
44       <plugins>
45         <plugin>
46           <!--Make it so assembly:single does nothing in here-->
47           <artifactId>maven-assembly-plugin</artifactId>
48           <configuration>
49             <skipAssembly>true</skipAssembly>
50           </configuration>
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         <plugin>
60           <groupId>net.revelc.code</groupId>
61           <artifactId>warbucks-maven-plugin</artifactId>
62         </plugin>
63       </plugins>
64     </pluginManagement>
65   </build>
66   <dependencies>
67     <!-- Intra-project dependencies -->
68     <dependency>
69       <groupId>org.apache.hbase</groupId>
70       <artifactId>hbase-common</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.apache.hbase</groupId>
74       <artifactId>hbase-logging</artifactId>
75       <type>test-jar</type>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.apache.hbase</groupId>
80       <artifactId>hbase-common</artifactId>
81       <type>test-jar</type>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.apache.hbase</groupId>
86       <artifactId>hbase-server</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.apache.hbase</groupId>
90       <artifactId>hbase-asyncfs</artifactId>
91       <type>test-jar</type>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.apache.hbase</groupId>
96       <artifactId>hbase-server</artifactId>
97       <type>test-jar</type>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.apache.hbase</groupId>
102       <artifactId>hbase-testing-util</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.apache.hbase</groupId>
107       <artifactId>hbase-annotations</artifactId>
108       <type>test-jar</type>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.slf4j</groupId>
113       <artifactId>slf4j-api</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>com.github.stephenc.findbugs</groupId>
117       <artifactId>findbugs-annotations</artifactId>
118       <scope>compile</scope>
119       <optional>true</optional>
120     </dependency>
121     <!-- native Java compression codecs -->
122     <dependency>
123       <groupId>io.airlift</groupId>
124       <artifactId>aircompressor</artifactId>
125     </dependency>
126     <!--Test-->
127     <dependency>
128       <groupId>org.slf4j</groupId>
129       <artifactId>jcl-over-slf4j</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.slf4j</groupId>
134       <artifactId>jul-to-slf4j</artifactId>
135       <scope>test</scope>
136     </dependency>
137     <dependency>
138       <groupId>org.apache.logging.log4j</groupId>
139       <artifactId>log4j-api</artifactId>
140       <scope>test</scope>
141     </dependency>
142     <dependency>
143       <groupId>org.apache.logging.log4j</groupId>
144       <artifactId>log4j-core</artifactId>
145       <scope>test</scope>
146     </dependency>
147     <dependency>
148       <groupId>org.apache.logging.log4j</groupId>
149       <artifactId>log4j-slf4j-impl</artifactId>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>org.apache.logging.log4j</groupId>
154       <artifactId>log4j-1.2-api</artifactId>
155       <scope>test</scope>
156     </dependency>
157     <dependency>
158       <groupId>org.hamcrest</groupId>
159       <artifactId>hamcrest-library</artifactId>
160       <scope>test</scope>
161     </dependency>
162     <dependency>
163       <groupId>org.mockito</groupId>
164       <artifactId>mockito-core</artifactId>
165       <scope>test</scope>
166     </dependency>
167   </dependencies>
168   <profiles>
169     <profile>
170       <id>build-with-jdk11</id>
171       <activation>
172         <jdk>[1.11,)</jdk>
173       </activation>
174       <dependencies>
175         <dependency>
176           <groupId>javax.annotation</groupId>
177           <artifactId>javax.annotation-api</artifactId>
178         </dependency>
179       </dependencies>
180     </profile>
181   </profiles>
182 </project>