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">
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 <modelVersion>4.0.0</modelVersion>
24 <artifactId>hbase-compression</artifactId>
25 <groupId>org.apache.hbase</groupId>
26 <version>3.0.0-alpha-3-SNAPSHOT</version>
27 <relativePath>..</relativePath>
29 <artifactId>hbase-compression-zstd</artifactId>
30 <name>Apache HBase - Compression - ZStandard</name>
31 <description>Pure Java compression support using zstd-jni</description>
34 <!-- Testing plugins -->
36 <artifactId>maven-surefire-plugin</artifactId>
39 <groupId>net.revelc.code</groupId>
40 <artifactId>warbucks-maven-plugin</artifactId>
46 <!--Make it so assembly:single does nothing in here-->
47 <artifactId>maven-assembly-plugin</artifactId>
49 <skipAssembly>true</skipAssembly>
56 <!-- Intra-project dependencies -->
58 <groupId>org.apache.hbase</groupId>
59 <artifactId>hbase-common</artifactId>
62 <groupId>org.apache.hbase</groupId>
63 <artifactId>hbase-logging</artifactId>
68 <groupId>org.apache.hbase</groupId>
69 <artifactId>hbase-common</artifactId>
74 <groupId>org.apache.hbase</groupId>
75 <artifactId>hbase-testing-util</artifactId>
79 <groupId>org.apache.hbase</groupId>
80 <artifactId>hbase-annotations</artifactId>
85 <groupId>org.slf4j</groupId>
86 <artifactId>slf4j-api</artifactId>
89 <groupId>com.github.stephenc.findbugs</groupId>
90 <artifactId>findbugs-annotations</artifactId>
91 <scope>compile</scope>
92 <optional>true</optional>
94 <!-- native Java compression codecs -->
96 <groupId>com.github.luben</groupId>
97 <artifactId>zstd-jni</artifactId>
101 <groupId>org.slf4j</groupId>
102 <artifactId>jcl-over-slf4j</artifactId>
106 <groupId>org.slf4j</groupId>
107 <artifactId>jul-to-slf4j</artifactId>
111 <groupId>org.apache.logging.log4j</groupId>
112 <artifactId>log4j-api</artifactId>
116 <groupId>org.apache.logging.log4j</groupId>
117 <artifactId>log4j-core</artifactId>
121 <groupId>org.apache.logging.log4j</groupId>
122 <artifactId>log4j-slf4j-impl</artifactId>
126 <groupId>org.apache.logging.log4j</groupId>
127 <artifactId>log4j-1.2-api</artifactId>
131 <groupId>org.hamcrest</groupId>
132 <artifactId>hamcrest-library</artifactId>
136 <groupId>org.mockito</groupId>
137 <artifactId>mockito-core</artifactId>
143 <id>build-with-jdk11</id>
149 <groupId>javax.annotation</groupId>
150 <artifactId>javax.annotation-api</artifactId>