HBASE-26921 Rewrite the counting cells part in TestMultiVersions (#4316)
[hbase.git] / hbase-compression / hbase-compression-zstd / pom.xml
blob55f38c73ccdc6e3dd81f24ecb8bf98714d5fc8ed
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-zstd</artifactId>
30   <name>Apache HBase - Compression - ZStandard</name>
31   <description>Pure Java compression support using zstd-jni</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       </plugins>
53     </pluginManagement>
54   </build>
55   <dependencies>
56     <!-- Intra-project dependencies -->
57     <dependency>
58       <groupId>org.apache.hbase</groupId>
59       <artifactId>hbase-common</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.apache.hbase</groupId>
63       <artifactId>hbase-logging</artifactId>
64       <type>test-jar</type>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.apache.hbase</groupId>
69       <artifactId>hbase-common</artifactId>
70       <type>test-jar</type>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.apache.hbase</groupId>
75       <artifactId>hbase-testing-util</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.apache.hbase</groupId>
80       <artifactId>hbase-annotations</artifactId>
81       <type>test-jar</type>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.slf4j</groupId>
86       <artifactId>slf4j-api</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>com.github.stephenc.findbugs</groupId>
90       <artifactId>findbugs-annotations</artifactId>
91       <scope>compile</scope>
92       <optional>true</optional>
93     </dependency>
94     <!-- native Java compression codecs -->
95     <dependency>
96       <groupId>com.github.luben</groupId>
97       <artifactId>zstd-jni</artifactId>
98     </dependency>
99     <!--Test-->
100     <dependency>
101       <groupId>org.slf4j</groupId>
102       <artifactId>jcl-over-slf4j</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.slf4j</groupId>
107       <artifactId>jul-to-slf4j</artifactId>
108       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.apache.logging.log4j</groupId>
112       <artifactId>log4j-api</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.apache.logging.log4j</groupId>
117       <artifactId>log4j-core</artifactId>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>org.apache.logging.log4j</groupId>
122       <artifactId>log4j-slf4j-impl</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.apache.logging.log4j</groupId>
127       <artifactId>log4j-1.2-api</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.hamcrest</groupId>
132       <artifactId>hamcrest-library</artifactId>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.mockito</groupId>
137       <artifactId>mockito-core</artifactId>
138       <scope>test</scope>
139     </dependency>
140   </dependencies>
141   <profiles>
142     <profile>
143       <id>build-with-jdk11</id>
144       <activation>
145         <jdk>[1.11,)</jdk>
146       </activation>
147       <dependencies>
148         <dependency>
149           <groupId>javax.annotation</groupId>
150           <artifactId>javax.annotation-api</artifactId>
151         </dependency>
152       </dependencies>
153     </profile>
154   </profiles>
155 </project>