HBASE-26921 Rewrite the counting cells part in TestMultiVersions (#4316)
[hbase.git] / hbase-compression / hbase-compression-xz / pom.xml
blob4efd0504f4ea9b21973bb99472e09e17238d88b5
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-xz</artifactId>
30   <name>Apache HBase - Compression - XZ</name>
31   <description>Pure Java compression support using XZ for Java</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-testing-util</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.apache.hbase</groupId>
91       <artifactId>hbase-annotations</artifactId>
92       <type>test-jar</type>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.slf4j</groupId>
97       <artifactId>slf4j-api</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>com.github.stephenc.findbugs</groupId>
101       <artifactId>findbugs-annotations</artifactId>
102       <scope>compile</scope>
103       <optional>true</optional>
104     </dependency>
105     <!-- native Java compression codecs -->
106     <dependency>
107       <groupId>org.tukaani</groupId>
108       <artifactId>xz</artifactId>
109     </dependency>
110     <!--Test-->
111     <dependency>
112       <groupId>org.slf4j</groupId>
113       <artifactId>jcl-over-slf4j</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.slf4j</groupId>
118       <artifactId>jul-to-slf4j</artifactId>
119       <scope>test</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.apache.logging.log4j</groupId>
123       <artifactId>log4j-api</artifactId>
124       <scope>test</scope>
125     </dependency>
126     <dependency>
127       <groupId>org.apache.logging.log4j</groupId>
128       <artifactId>log4j-core</artifactId>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>org.apache.logging.log4j</groupId>
133       <artifactId>log4j-slf4j-impl</artifactId>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.apache.logging.log4j</groupId>
138       <artifactId>log4j-1.2-api</artifactId>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.hamcrest</groupId>
143       <artifactId>hamcrest-library</artifactId>
144       <scope>test</scope>
145     </dependency>
146     <dependency>
147       <groupId>org.mockito</groupId>
148       <artifactId>mockito-core</artifactId>
149       <scope>test</scope>
150     </dependency>
151   </dependencies>
152   <profiles>
153     <profile>
154       <id>build-with-jdk11</id>
155       <activation>
156         <jdk>[1.11,)</jdk>
157       </activation>
158       <dependencies>
159         <dependency>
160           <groupId>javax.annotation</groupId>
161           <artifactId>javax.annotation-api</artifactId>
162         </dependency>
163       </dependencies>
164     </profile>
165   </profiles>
166 </project>