Init package

This commit is contained in:
wang--ge 2021-07-07 09:50:58 +08:00
parent 3ac9144fb0
commit c5861afab1
6 changed files with 854 additions and 0 deletions

BIN
2.2.5.tar.gz Normal file

Binary file not shown.

70
hbase-site.xml Normal file
View File

@ -0,0 +1,70 @@
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!--
/**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<configuration>
<property>
<name>hbase.tmp.dir</name>
<value>/var/cache/hbase</value>
<description>The temporary directory.
</description>
</property>
<property>
<name>hbase.rootdir</name>
<value>hdfs://localhost:8020/hbase</value>
<description>The directory shared by RegionServers.
</description>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
<description>The mode the cluster will be in. Possible values are
false: standalone and pseudo-distributed setups with managed Zookeeper
true: fully-distributed with unmanaged Zookeeper Quorum (see hbase-env.sh)
</description>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>localhost</value>
<description>Comma separated list of servers in the ZooKeeper Quorum.
For example, "host1.mydomain.com,host2.mydomain.com,host3.mydomain.com".
By default this is set to localhost for local and pseudo-distributed
modes of operation. For a fully-distributed setup, this should be set to
a full list of ZooKeeper quorum servers. If HBASE_MANAGES_ZK is set in
hbase-env.sh this is the list of servers which we will start/stop
ZooKeeper on.
</description>
</property>
<property>
<name>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
<description>Property from ZooKeeper's config zoo.cfg.
The port at which the clients will connect.
</description>
</property>
<property>
<name>hbase.zookeeper.property.dataDir</name>
<value>/var/lib/hbase/zookeeper</value>
<description>Property from ZooKeeper's config zoo.cfg.
The directory where the snapshot is stored.
</description>
</property>
</configuration>

8
hbase.logrotate Normal file
View File

@ -0,0 +1,8 @@
/var/log/hbase/*.log
{
missingok
copytruncate
compress
weekly
rotate 52
}

21
hbase.service.template Normal file
View File

@ -0,0 +1,21 @@
[Unit]
Description=The HBase DAEMON daemon
After=network.target
After=NetworkManager.target
[Service]
Type=forking
EnvironmentFile=-/etc/sysconfig/hbase
EnvironmentFile=-/etc/sysconfig/hbase-DAEMON
ExecStart=/usr/bin/hbase-daemon.sh start DAEMON
ExecStop=/usr/bin/hbase-daemon.sh stop DAEMON
User=hbase
Group=hbase
PIDFile=/var/run/hbase/hbase-hbase-DAEMON.pid
LimitNOFILE=32768
LimitNPROC=65536
LimitMEMLOCK=infinity
#ControlGroup=cpu:/hbase memory:/hbase
[Install]
WantedBy=multi-user.target

304
hbase.spec Normal file
View File

@ -0,0 +1,304 @@
%global _hardened_build 1
%global services hbase-master.service hbase-thrift.service hbase-rest.service hbase-zookeeper.service hbase-regionserver.service
# Currently disabled because packaging the singular binary in a noarch package
# is troublesome
%global package_native 0
Name: hbase
Version: 2.2.5
Release: 1
Summary: A database for Apache Hadoop
License: Apache-2.0 and BSD and CPL-1.0 and EPL-1.0 and MIT
URL: http://hbase.apache.org/
Source0: https://github.com/apache/%{name}/archive/rel/%{version}.tar.gz
Source1: %{name}.logrotate
Source2: %{name}-site.xml
Source3: %{name}.service.template
Source4: xmvn-reactor
BuildArch: noarch
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: gradle-local xmvn xmvn-install
BuildRequires: systemd
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: java-1.8.0-openjdk-devel maven hostname maven-local protobuf2-devel protobuf2-compiler protobuf2
Requires: java-1.8.0-openjdk
# Required for the shell
Requires: bytelist
Requires: invokebinder
Requires: jcodings
Requires: jansi
Requires: jline
Requires: jnr-ffi
Requires: jnr-posix
Requires: jnr-constants
# Documenting the dep here, but it's detected in autoRequires
Requires: joda-time
Requires: joni
Requires: objectweb-asm
Requires: apache-commons-lang3
Requires: glassfish-el-api
Requires(post): systemd
Requires(preun): systemd
Requires(postun): systemd
%description
Apache HBase is a database for Apache Hadoop that provides a distributed,
scalable, big data store.
%if %{package_native}
%package native
Summary: Native Apache HBase libraries
Requires: %{name} = %{version}-%{release}
%description native
Apache HBase is a database for Apache Hadoop that provides a distributed,
scalable, big data store.
This package contains native libraries for Apache HBase.
%endif
%if %{with javadoc}
%package javadoc
Summary: Javadoc for Apache HBase
BuildArch: noarch
%description javadoc
This package contains the API documentation for %{name}.
%endif
%prep
%setup -qn %{name}-rel-%{version}
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-aarch_64 -Dpackaging=exe -Dfile=/usr/bin/protoc
cp %{SOURCE4} ./.xmvn-reactor
echo `pwd` > absolute_prefix.log
sed -i 's/\//\\\//g' absolute_prefix.log
absolute_prefix=`head -n 1 absolute_prefix.log`
sed -i 's/absolute-prefix/'"$absolute_prefix"'/g' .xmvn-reactor
%build
mvn -Pnative clean install -DskipTests assembly:single -Prelease -Dmaven.javadoc.skip=true -Drat.skip=true
%if %{with tests}
%check
%if %{package_native}
profile="-Pnative"
%endif
xmvn -o -Dhadoop.profile=2.0 $profile test
%endif
%install
%mvn_install
# Extract the binary tarball
tar -C %{name}-assembly/target -zxf %{name}-assembly/target/%{name}-%{version}-bin.tar.gz
install -d -m 0755 %{buildroot}/%{_bindir}
install -d -m 0755 %{buildroot}/%{_datadir}/%{name}/bin
install -d -m 0755 %{buildroot}/%{_datadir}/%{name}/lib
install -d -m 0755 %{buildroot}/%{_datadir}/%{name}/%{name}-webapps
install -d -m 0755 %{buildroot}/%{_libdir}/%{name}
install -d -m 0755 %{buildroot}/%{_sysconfdir}/%{name}
install -d -m 0755 %{buildroot}/%{_sysconfdir}/logrotate.d
install -d -m 0755 %{buildroot}/%{_tmpfilesdir}
install -d -m 0755 %{buildroot}/%{_unitdir}
install -d -m 0755 %{buildroot}/%{_var}/cache/%{name}
install -d -m 0755 %{buildroot}/%{_sharedstatedir}/%{name}/zookeeper
install -d -m 0755 %{buildroot}/%{_var}/log/%{name}
install -d -m 0755 %{buildroot}/%{_var}/run/%{name}
pushd %{name}-assembly/target/%{name}-%{version}
# Binaries
cp -arf bin/* %{buildroot}/%{_datadir}/%{name}/bin
rm -f %{buildroot}/%{_datadir}/%{name}/bin/*.cmd
pushd %{buildroot}/%{_datadir}/%{name}/bin
# Create symlinks for commands in _bindir
for f in `ls | grep -v \\.rb`
do
if [ -f $f ]
then
%{__ln_s} %{_datadir}/%{name}/bin/$f %{buildroot}/%{_bindir}
fi
done
popd
# Remove symlinks from files that aren't commands but are includes
pushd %{buildroot}/%{_bindir}
rm -f %{name}-common %{name}-config
popd
# Configuration
install -m 0644 conf/* %{buildroot}/%{_sysconfdir}/%{name}
rm -f %{buildroot}/%{_sysconfdir}/%{name}/*.cmd
install -m 0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}
# Modify hbase-env.sh to point to the correct location for JAVA_HOME
sed -i "s|#\s*export JAVA_HOME.*|export JAVA_HOME=/usr/lib/jvm/jre|" %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env.sh
# Modify hbase-env.sh to point to the correct location for pid creation
sed -i "s|#\s*export HBASE_PID_DIR.*|export HBASE_PID_DIR=/var/run/hbase|" %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env.sh
# Modify hbase-env.sh to point to the correct location for log files
sed -i "s|#\s*export HBASE_LOG_DIR.*|export HBASE_LOG_DIR=/var/log/hbase|" %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env.sh
# Link the hdfs-site.xml into the config directory to pick up any HDFS
# client configuration
%{__ln_s} %{_sysconfdir}/hadoop/hdfs-site.xml %{buildroot}/%{_sysconfdir}/%{name}
# Webapps
cp -arp %{name}-webapps/* %{buildroot}/%{_datadir}/%{name}/%{name}-webapps
# Dependency jars
install -m 0755 lib/hbase-shaded-miscellaneous-2.2.1.jar %{buildroot}%{_datadir}/java/%{name}/hbase-shaded-miscellaneous-2.2.1.jar
install -m 0755 lib/hbase-shaded-netty-2.2.1.jar %{buildroot}%{_datadir}/java/%{name}/hbase-shaded-netty-2.2.1.jar
install -m 0755 lib/hbase-shaded-protobuf-2.2.1.jar %{buildroot}%{_datadir}/java/%{name}/hbase-shaded-protobuf-2.2.1.jar
install lib/*.jar %{buildroot}/%{_datadir}/%{name}/lib
rm -f %{buildroot}/%{_datadir}/%{name}/lib/tools-*.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/%{name}*-tests.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/%{name}-testing-util-*.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/tomcat-*.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/servlet-api-*.jar
pushd %{buildroot}/%{_datadir}/%{name}/lib
# Replace jar files with symlinks for all jars from the build
for f in `ls hbase*`
do
n=`echo $f | sed "s/-%{version}//"`
rm -f $f
%{__ln_s} %{_javadir}/%{name}/$n $f
done
popd
# jruby bits
cp -arf lib/ruby %{buildroot}/%{_datadir}/%{name}/lib
%if 0
# Native libraries
cp -arf lib/native/* %{buildroot}/%{_libdir}/%{name}
%endif
popd
pushd %{buildroot}/%{_datadir}/%{name}
%{__ln_s} %{_sysconfdir}/%{name} conf
%{__ln_s} %{_libdir}/%{name} lib/native
%{__ln_s} %{_var}/log/%{name} logs
%{__ln_s} %{_var}/run/%{name} pids
popd
# Add jars to the classpath for hbase shell
echo "export HBASE_CLASSPATH_PREFIX=$(build-classpath objectweb-asm/asm objectweb-asm/asm-commons jnr-posix jnr-constants joni jruby bytelist jcodings jnr-ffi joda-time jline jansi invokebinder):\$HBASE_CLASSPATH" > %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env-shell.sh
echo "export JRUBY_HOME=/usr/share/jruby" >> %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env-shell.sh
# Ensure /var/run directory is recreated on boot
echo "d %{_var}/run/%{name} 0775 hbase hbase -" > %{buildroot}/%{_tmpfilesdir}/%{name}.conf
# logrotate config
install -m 0644 %{SOURCE1} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name}
# systemd configuration
for service in %{services}
do
s=`echo $service | cut -d'-' -f 2- | cut -d'.' -f 1`
sed -e "s|DAEMON|$s|g" %{SOURCE3} > %{buildroot}/%{_unitdir}/%{name}-$s.service
done
%pretrans -p <lua>
path = "%{_datadir}/%{name}/%{name}-webapps"
st = posix.stat(path)
if st and st.type == "link" then
os.remove(path)
end
%pre
getent group hbase >/dev/null || /usr/sbin/groupadd -r hbase
getent passwd hbase > /dev/null || /usr/sbin/useradd -c "Apache HBase" -s /sbin/nologin -g hbase -r -d %{_sharedstatedir}/%{name} hbase
%preun
%systemd_preun %{services}
%post
# Change the home directory for the hbase user
if [[ `getent passwd hbase | cut -d: -f 6` != "%{_sharedstatedir}/%{name}" ]]
then
/usr/sbin/usermod -d %{_sharedstatedir}/%{name} hbase
fi
if [ $1 -gt 1 ]
then
if [ -d %{_var}/cache/%{name}/zookeeper ] && [ ! -L %{_var}/cache/%{name}/zookeeper ]
then
# Move the existing zookeeper data to the new location
mv -f %{_var}/cache/%{name}/zookeeper/* %{_sharedstatedir}/%{name}/zookeeper
fi
if [ -d %{_var}/cache/%{name}/%{name} ] && [ ! -L %{_var}/cache/%{name}/%{name} ]
then
# Move the existing hbase data to the new location
mv -f %{_var}/cache/%{name}/%{name}/* %{_var}/cache/%{name}
fi
fi
%systemd_post %{services}
%postun
%systemd_postun_with_restart %{services}
if [ $1 -lt 1 ]
then
# Remove compatibility symlinks
rm -f %{_var}/cache/%{name}/%{name}
rm -f %{_var}/cache/%{name}/zookeeper
fi
%posttrans
# Create symlinks to the new locations for zookeeper and hbase data in case
# the user changed the configuration file and the new one isn't in place to
# point to the correct location
if [ -d %{_var}/cache/%{name}/zookeeper ]
then
rm -rf %{_var}/cache/%{name}/zookeeper
fi
if [ ! -e %{_var}/cache/%{name}/zookeeper ]
then
%{__ln_s} %{_sharedstatedir}/%{name}/zookeeper %{_var}/cache/%{name}
fi
if [ -d %{_var}/cache/%{name}/%{name} ]
then
rm -rf %{_var}/cache/%{name}/%{name}
fi
if [ ! -e %{_var}/cache/%{name}/%{name} ]
then
%{__ln_s} %{_var}/cache/%{name} %{_var}/cache/%{name}
fi
%files -f .mfiles
%doc LICENSE.txt NOTICE.txt README.txt
%exclude %{_datadir}/%{name}/lib/native
%{_bindir}/*
%{_datadir}/%{name}
%dir %{_javadir}/%{name}
%attr(-,hbase,hbase) %{_sharedstatedir}/%{name}
%config(noreplace) %{_sysconfdir}/%{name}
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
%{_tmpfilesdir}/%{name}.conf
%{_unitdir}/%{name}-*.service
%attr(0755,hbase,hbase) %dir %{_var}/cache/%{name}
%attr(0755,hbase,hbase) %dir %{_var}/log/%{name}
%attr(0755,hbase,hbase) %dir %{_var}/run/%{name}
%attr(0755,root,root) %{_datadir}/java/%{name}/hbase-shaded-miscellaneous-2.2.1.jar
%attr(0755,root,root) %{_datadir}/java/%{name}/hbase-shaded-netty-2.2.1.jar
%attr(0755,root,root) %{_datadir}/java/%{name}/hbase-shaded-protobuf-2.2.1.jar
%if %{package_native}
%files native
%{_datadir}/%{name}/lib/native
%{_libdir}/%{name}
%endif
%changelog
* Tue Mar 16 2021 Ge Wang <wangge20@huawei.com> 2.2.5-1
- Init package

451
xmvn-reactor Normal file
View File

@ -0,0 +1,451 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata xmlns="http://fedorahosted.org/xmvn/METADATA/3.0.0">
<artifacts>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-assembly</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-assembly/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-client/target/hbase-client-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-client/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-common</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-common/target/hbase-common-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-common</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-common/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-examples</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-examples/target/hbase-examples-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-examples</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-examples/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop-compat</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hadoop-compat/target/hbase-hadoop-compat-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop-compat</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hadoop-compat/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop2-compat</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hadoop2-compat/target/hbase-hadoop2-compat-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop2-compat</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hadoop2-compat/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-it</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-it/target/hbase-it-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-it</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-it/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-prefix-tree</artifactId>
<version>2.2.5</version>
<path>.</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-prefix-tree</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path></path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-protocol</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-protocol/target/hbase-protocol-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-protocol</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-protocol/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-server/target/hbase-server-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-server/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shell</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shell/target/hbase-shell-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shell</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shell/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-thrift</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-thrift/target/hbase-thrift-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-thrift</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/hbase-thrift/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-annotations</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-annotations/target/hbase-annotations-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-endpoint</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-endpoint/target/hbase-endpoint-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-external-blockcache</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-external-blockcache/target/hbase-external-blockcache-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hbtop</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hbtop/target/hbase-hbtop-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-http</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-http/target/hbase-http-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-mapreduce</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-mapreduce/target/hbase-mapreduce-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-metrics</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-metrics/target/hbase-metrics-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-metrics-api</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-metrics-api/target/hbase-metrics-api-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-procedure</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-procedure/target/hbase-procedure-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-protocol-shaded</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-protocol-shaded/target/hbase-protocol-shaded-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-replication</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-replication/target/hbase-replication-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-resource-bundle</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-resource-bundle/target/hbase-resource-bundle-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-rest</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-rest/target/hbase-rest-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-rsgroup</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-rsgroup/target/hbase-rsgroup-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-miscellaneous</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shaded-miscellaneous/target/hbase-shaded-miscellaneous-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-netty</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shaded-netty/target/hbase-shaded-netty-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-protobuf</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shaded-protobuf/target/hbase-shaded-protobuf-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-zookeeper</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-zookeeper/target/hbase-zookeeper-2.2.5.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
</artifacts>
</metadata>