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-build-configuration</artifactId>
25 <groupId>org.apache.hbase</groupId>
26 <version>3.0.0-alpha-2</version>
27 <relativePath>../hbase-build-configuration</relativePath>
29 <artifactId>hbase-compression</artifactId>
30 <name>Apache HBase - Compression</name>
31 <description>Pure Java compression support parent</description>
32 <packaging>pom</packaging>
35 <module>hbase-compression-aircompressor</module>
36 <module>hbase-compression-lz4</module>
37 <module>hbase-compression-snappy</module>
38 <module>hbase-compression-xz</module>
39 <module>hbase-compression-zstd</module>
44 <groupId>org.apache.hbase</groupId>
45 <artifactId>hbase-resource-bundle</artifactId>
46 <optional>true</optional>
53 <!-- This entry overrides the excludeFileFilter element in the findbugs
54 configuration of the hbase/pom.xml file. This override specifies that
55 the excluded-filter-file is found TWO levels up from a grandchild project. -->
57 <groupId>com.github.spotbugs</groupId>
58 <artifactId>spotbugs-maven-plugin</artifactId>
60 <excludeFilterFile>${project.basedir}/../../dev-support/spotbugs-exclude.xml</excludeFilterFile>
61 <spotbugsXmlOutput>true</spotbugsXmlOutput>
62 <xmlOutput>true</xmlOutput>
67 <!--Make it so assembly:single does nothing in here-->
68 <artifactId>maven-assembly-plugin</artifactId>
70 <skipAssembly>true</skipAssembly>
76 <!-- Special configuration for findbugs just in the parent, emulating the setup in
77 hbase/pom.xml. Note that exclude-file-filter is found ONE level up from this project. -->
79 <groupId>com.github.spotbugs</groupId>
80 <artifactId>spotbugs-maven-plugin</artifactId>
83 <inherited>false</inherited>
88 <excludeFilterFile>${project.basedir}/../dev-support/spotbugs-exclude.xml</excludeFilterFile>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-checkstyle-plugin</artifactId>
97 <failOnViolation>true</failOnViolation>
101 <!--Make it so assembly:single does nothing in here-->
102 <artifactId>maven-assembly-plugin</artifactId>
104 <skipAssembly>true</skipAssembly>