Compare commits
11 Commits
4f75587198
...
3093c90ccf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3093c90ccf | ||
|
|
e26347e2e7 | ||
|
|
d5fe269b50 | ||
|
|
557ee067ba | ||
|
|
a04ea3fae8 | ||
|
|
9545318447 | ||
|
|
31350a7383 | ||
|
|
fc719c52dc | ||
|
|
96083f61b8 | ||
|
|
c618d23f39 | ||
|
|
462ab2c8e1 |
Binary file not shown.
15
README.md
15
README.md
@ -1,11 +1,24 @@
|
|||||||
# hbase
|
# hbase
|
||||||
|
|
||||||
#### 介绍
|
#### 介绍
|
||||||
A Distributed Storage System for Structured Data
|
HBase 是一种分布式、可扩展、支持海量数据存储的 NoSQL 数据库.
|
||||||
|
|
||||||
#### 软件架构
|
#### 软件架构
|
||||||
软件架构说明
|
软件架构说明
|
||||||
|
- Master
|
||||||
|
Master 是所有 Region Server 的管理者,其实现类为 HMaster(服务器上有个HMaster进程),主要作用如下: 对于表的操作:create, delete, alter对于 RegionServer 的操作:分配 regions 到每个 RegionServer,监控每个 RegionServer的状态,负载均衡和故障转移。即负责ddl操作。
|
||||||
|
- Region Server
|
||||||
|
Region Server 为 Region 的管理者,其实现类为 HRegionServer(服务器上有个HRegionServer进程),主要作用如下: 对于数据的操作:get, put, delete(负责dml操作);对于 Region 的操作:splitRegion、compactRegion。
|
||||||
|
- 这里是列表文本Zookeeper
|
||||||
|
HBase 通过 Zookeeper 来做 Master 的高可用、RegionServer 的监控、元数据的入口以及 集群配置的维护等工作。
|
||||||
|
- 4. HDFS
|
||||||
|
HDFS 为 HBase 提供最终的底层数据存储服务,同时为 HBase 提供高可用的支持。
|
||||||
|
|
||||||
|
#### ARM支持:
|
||||||
|
|
||||||
|
1. [移植指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E7%A7%BB%E6%A4%8D%E6%8C%87%E5%8D%97/hbase.md)
|
||||||
|
2. [部署指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E9%83%A8%E7%BD%B2%E6%8C%87%E5%8D%97/hbase.md)
|
||||||
|
3. [调优指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E8%B0%83%E4%BC%98%E6%8C%87%E5%8D%97/hbaseOptimization.md)
|
||||||
|
|
||||||
#### 安装教程
|
#### 安装教程
|
||||||
|
|
||||||
|
|||||||
13
fix-riscv64-support.patch
Normal file
13
fix-riscv64-support.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java
|
||||||
|
index fbad0da..4897e7f 100644
|
||||||
|
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java
|
||||||
|
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java
|
||||||
|
@@ -54,6 +54,8 @@ public class JVM {
|
||||||
|
System.getProperty("os.arch") != null && System.getProperty("os.arch").contains("amd64");
|
||||||
|
private static final boolean aarch64 =
|
||||||
|
System.getProperty("os.arch") != null && System.getProperty("os.arch").contains("aarch64");
|
||||||
|
+ private static final boolean riscv64 =
|
||||||
|
+ System.getProperty("os.arch") != null && System.getProperty("os.arch").contains("riscv64");
|
||||||
|
|
||||||
|
private static final String JVMVersion = System.getProperty("java.version");
|
||||||
|
|
||||||
@ -29,7 +29,7 @@
|
|||||||
</property>
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.rootdir</name>
|
<name>hbase.rootdir</name>
|
||||||
<value>hdfs://localhost:8020/hbase</value>
|
<value>hdfs://localhost:9000/hbase</value>
|
||||||
<description>The directory shared by RegionServers.
|
<description>The directory shared by RegionServers.
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
76
hbase.spec
76
hbase.spec
@ -7,8 +7,8 @@
|
|||||||
%global package_native 0
|
%global package_native 0
|
||||||
|
|
||||||
Name: hbase
|
Name: hbase
|
||||||
Version: 2.2.5
|
Version: 2.5.0
|
||||||
Release: 1
|
Release: 3
|
||||||
Summary: A database for Apache Hadoop
|
Summary: A database for Apache Hadoop
|
||||||
License: Apache-2.0 and BSD and CPL-1.0 and EPL-1.0 and MIT
|
License: Apache-2.0 and BSD and CPL-1.0 and EPL-1.0 and MIT
|
||||||
URL: http://hbase.apache.org/
|
URL: http://hbase.apache.org/
|
||||||
@ -17,6 +17,9 @@ Source1: %{name}.logrotate
|
|||||||
Source2: %{name}-site.xml
|
Source2: %{name}-site.xml
|
||||||
Source3: %{name}.service.template
|
Source3: %{name}.service.template
|
||||||
Source4: xmvn-reactor
|
Source4: xmvn-reactor
|
||||||
|
Source5: protoc-3.21.1-linux-riscv64.exe
|
||||||
|
Patch0: upgrade_os-maven_plugin_to_1.7.1.patch
|
||||||
|
Patch1: fix-riscv64-support.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
@ -27,23 +30,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|||||||
BuildRequires: java-1.8.0-openjdk-devel maven hostname maven-local protobuf2-devel protobuf2-compiler protobuf2
|
BuildRequires: java-1.8.0-openjdk-devel maven hostname maven-local protobuf2-devel protobuf2-compiler protobuf2
|
||||||
Requires: java-1.8.0-openjdk
|
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(post): systemd
|
||||||
Requires(preun): systemd
|
Requires(preun): systemd
|
||||||
Requires(postun): systemd
|
Requires(postun): systemd
|
||||||
@ -75,6 +61,12 @@ This package contains the API documentation for %{name}.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -qn %{name}-rel-%{version}
|
%setup -qn %{name}-rel-%{version}
|
||||||
|
%patch0 -p1
|
||||||
|
%if "%{_arch}" == "riscv64"
|
||||||
|
%patch1 -p1
|
||||||
|
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-riscv64 -Dpackaging=exe -Dfile=/usr/bin/protoc
|
||||||
|
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=3.21.1 -Dclassifier=linux-riscv64 -Dpackaging=exe -Dfile=%{SOURCE5}
|
||||||
|
%endif
|
||||||
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-aarch_64 -Dpackaging=exe -Dfile=/usr/bin/protoc
|
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
|
cp %{SOURCE4} ./.xmvn-reactor
|
||||||
echo `pwd` > absolute_prefix.log
|
echo `pwd` > absolute_prefix.log
|
||||||
@ -83,6 +75,9 @@ absolute_prefix=`head -n 1 absolute_prefix.log`
|
|||||||
sed -i 's/absolute-prefix/'"$absolute_prefix"'/g' .xmvn-reactor
|
sed -i 's/absolute-prefix/'"$absolute_prefix"'/g' .xmvn-reactor
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%if "%{_arch}" == "riscv64"
|
||||||
|
export MAVEN_OPTS="-Xms2048M -Xmx8000M"
|
||||||
|
%endif
|
||||||
mvn -Pnative clean install -DskipTests assembly:single -Prelease -Dmaven.javadoc.skip=true -Drat.skip=true
|
mvn -Pnative clean install -DskipTests assembly:single -Prelease -Dmaven.javadoc.skip=true -Drat.skip=true
|
||||||
|
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
@ -154,27 +149,12 @@ pushd %{name}-assembly/target/%{name}-%{version}
|
|||||||
cp -arp %{name}-webapps/* %{buildroot}/%{_datadir}/%{name}/%{name}-webapps
|
cp -arp %{name}-webapps/* %{buildroot}/%{_datadir}/%{name}/%{name}-webapps
|
||||||
|
|
||||||
# Dependency jars
|
# 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
|
install lib/*.jar %{buildroot}/%{_datadir}/%{name}/lib
|
||||||
rm -f %{buildroot}/%{_datadir}/%{name}/lib/tools-*.jar
|
|
||||||
rm -f %{buildroot}/%{_datadir}/%{name}/lib/%{name}*-tests.jar
|
# Other files
|
||||||
rm -f %{buildroot}/%{_datadir}/%{name}/lib/%{name}-testing-util-*.jar
|
cp -arf lib/ruby %{buildroot}/%{_datadir}/%{name}/lib
|
||||||
rm -f %{buildroot}/%{_datadir}/%{name}/lib/tomcat-*.jar
|
cp -arf lib/client-facing-thirdparty %{buildroot}/%{_datadir}/%{name}/lib
|
||||||
rm -f %{buildroot}/%{_datadir}/%{name}/lib/servlet-api-*.jar
|
cp -arf lib/shaded-clients %{buildroot}/%{_datadir}/%{name}/lib
|
||||||
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
|
%if 0
|
||||||
# Native libraries
|
# Native libraries
|
||||||
@ -189,10 +169,6 @@ pushd %{buildroot}/%{_datadir}/%{name}
|
|||||||
%{__ln_s} %{_var}/run/%{name} pids
|
%{__ln_s} %{_var}/run/%{name} pids
|
||||||
popd
|
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
|
# Ensure /var/run directory is recreated on boot
|
||||||
echo "d %{_var}/run/%{name} 0775 hbase hbase -" > %{buildroot}/%{_tmpfilesdir}/%{name}.conf
|
echo "d %{_var}/run/%{name} 0775 hbase hbase -" > %{buildroot}/%{_tmpfilesdir}/%{name}.conf
|
||||||
|
|
||||||
@ -289,9 +265,6 @@ fi
|
|||||||
%attr(0755,hbase,hbase) %dir %{_var}/cache/%{name}
|
%attr(0755,hbase,hbase) %dir %{_var}/cache/%{name}
|
||||||
%attr(0755,hbase,hbase) %dir %{_var}/log/%{name}
|
%attr(0755,hbase,hbase) %dir %{_var}/log/%{name}
|
||||||
%attr(0755,hbase,hbase) %dir %{_var}/run/%{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}
|
%if %{package_native}
|
||||||
%files native
|
%files native
|
||||||
@ -300,5 +273,16 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed May 29 2024 Dingli Zhang <dingli@iscas.ac.cn> - 2.5.0-3
|
||||||
|
- Fix riscv64 support
|
||||||
|
- Upgrade os-maven-plugin to 1.7.1
|
||||||
|
- Remove useless settings.xml
|
||||||
|
|
||||||
|
* Wed May 8 2024 xiexing <xiexing4@hisilicon.com> - 2.5.0-2
|
||||||
|
- remove unnecessary require
|
||||||
|
|
||||||
|
* Tue Sep 12 2023 Youjing Yu <2534849757@qq.com> 2.5.0-1
|
||||||
|
- Upgrade Hbase Version to 2.5.0
|
||||||
|
|
||||||
* Tue Mar 16 2021 Ge Wang <wangge20@huawei.com> 2.2.5-1
|
* Tue Mar 16 2021 Ge Wang <wangge20@huawei.com> 2.2.5-1
|
||||||
- Init package
|
- Init package
|
||||||
|
|||||||
BIN
protoc-3.21.1-linux-riscv64.exe
Normal file
BIN
protoc-3.21.1-linux-riscv64.exe
Normal file
Binary file not shown.
13
upgrade_os-maven_plugin_to_1.7.1.patch
Normal file
13
upgrade_os-maven_plugin_to_1.7.1.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/pom.xml b/pom.xml
|
||||||
|
index b603ca4..dcd21fd 100644
|
||||||
|
--- a/pom.xml
|
||||||
|
+++ b/pom.xml
|
||||||
|
@@ -621,7 +621,7 @@
|
||||||
|
<maven.javadoc.version>3.4.0</maven.javadoc.version>
|
||||||
|
<maven.warbucks.version>1.1.0</maven.warbucks.version>
|
||||||
|
<maven.project.info.report.version>3.1.2</maven.project.info.report.version>
|
||||||
|
- <os.maven.version>1.5.0.Final</os.maven.version>
|
||||||
|
+ <os.maven.version>1.7.1</os.maven.version>
|
||||||
|
<findbugs-annotations.version>1.3.9-1</findbugs-annotations.version>
|
||||||
|
<spotbugs.version>4.2.2</spotbugs.version>
|
||||||
|
<spotbugs.maven.version>4.2.0</spotbugs.maven.version>
|
||||||
224
xmvn-reactor
224
xmvn-reactor
@ -5,253 +5,253 @@
|
|||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-assembly</artifactId>
|
<artifactId>hbase-assembly</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-assembly/pom.xml</path>
|
<path>absolute-prefix/hbase-assembly/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-client</artifactId>
|
<artifactId>hbase-client</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-client/target/hbase-client-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-client/target/hbase-client-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-client</artifactId>
|
<artifactId>hbase-client</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-client/pom.xml</path>
|
<path>absolute-prefix/hbase-client/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-common</artifactId>
|
<artifactId>hbase-common</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-common/target/hbase-common-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-common/target/hbase-common-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-common</artifactId>
|
<artifactId>hbase-common</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-common/pom.xml</path>
|
<path>absolute-prefix/hbase-common/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-examples</artifactId>
|
<artifactId>hbase-examples</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-examples/target/hbase-examples-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-examples/target/hbase-examples-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-examples</artifactId>
|
<artifactId>hbase-examples</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-examples/pom.xml</path>
|
<path>absolute-prefix/hbase-examples/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-hadoop-compat</artifactId>
|
<artifactId>hbase-hadoop-compat</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-hadoop-compat/target/hbase-hadoop-compat-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-hadoop-compat/target/hbase-hadoop-compat-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-hadoop-compat</artifactId>
|
<artifactId>hbase-hadoop-compat</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-hadoop-compat/pom.xml</path>
|
<path>absolute-prefix/hbase-hadoop-compat/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-hadoop2-compat</artifactId>
|
<artifactId>hbase-hadoop2-compat</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-hadoop2-compat/target/hbase-hadoop2-compat-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-hadoop2-compat/target/hbase-hadoop2-compat-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-hadoop2-compat</artifactId>
|
<artifactId>hbase-hadoop2-compat</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-hadoop2-compat/pom.xml</path>
|
<path>absolute-prefix/hbase-hadoop2-compat/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-it</artifactId>
|
<artifactId>hbase-it</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-it/target/hbase-it-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-it/target/hbase-it-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-it</artifactId>
|
<artifactId>hbase-it</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-it/pom.xml</path>
|
<path>absolute-prefix/hbase-it/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<!--artifact>
|
<!--artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-prefix-tree</artifactId>
|
<artifactId>hbase-prefix-tree</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>.</path>
|
<path>.</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-prefix-tree</artifactId>
|
<artifactId>hbase-prefix-tree</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path></path>
|
<path></path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact-->
|
</artifact-->
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-protocol</artifactId>
|
<artifactId>hbase-protocol</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-protocol/target/hbase-protocol-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-protocol/target/hbase-protocol-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-protocol</artifactId>
|
<artifactId>hbase-protocol</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-protocol/pom.xml</path>
|
<path>absolute-prefix/hbase-protocol/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-server</artifactId>
|
<artifactId>hbase-server</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-server/target/hbase-server-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-server/target/hbase-server-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-server</artifactId>
|
<artifactId>hbase-server</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-server/pom.xml</path>
|
<path>absolute-prefix/hbase-server/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-shell</artifactId>
|
<artifactId>hbase-shell</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-shell/target/hbase-shell-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-shell/target/hbase-shell-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-shell</artifactId>
|
<artifactId>hbase-shell</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-shell/pom.xml</path>
|
<path>absolute-prefix/hbase-shell/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-thrift</artifactId>
|
<artifactId>hbase-thrift</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-thrift/target/hbase-thrift-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-thrift/target/hbase-thrift-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-thrift</artifactId>
|
<artifactId>hbase-thrift</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-thrift/pom.xml</path>
|
<path>absolute-prefix/hbase-thrift/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
@ -259,192 +259,192 @@
|
|||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase</artifactId>
|
<artifactId>hbase</artifactId>
|
||||||
<extension>pom</extension>
|
<extension>pom</extension>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/pom.xml</path>
|
<path>absolute-prefix/pom.xml</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
|
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-annotations</artifactId>
|
<artifactId>hbase-annotations</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-annotations/target/hbase-annotations-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-annotations/target/hbase-annotations-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-endpoint</artifactId>
|
<artifactId>hbase-endpoint</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-endpoint/target/hbase-endpoint-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-endpoint/target/hbase-endpoint-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-external-blockcache</artifactId>
|
<artifactId>hbase-external-blockcache</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-external-blockcache/target/hbase-external-blockcache-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-external-blockcache/target/hbase-external-blockcache-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-hbtop</artifactId>
|
<artifactId>hbase-hbtop</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-hbtop/target/hbase-hbtop-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-hbtop/target/hbase-hbtop-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-http</artifactId>
|
<artifactId>hbase-http</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-http/target/hbase-http-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-http/target/hbase-http-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-mapreduce</artifactId>
|
<artifactId>hbase-mapreduce</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-mapreduce/target/hbase-mapreduce-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-mapreduce/target/hbase-mapreduce-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-metrics</artifactId>
|
<artifactId>hbase-metrics</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-metrics/target/hbase-metrics-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-metrics/target/hbase-metrics-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-metrics-api</artifactId>
|
<artifactId>hbase-metrics-api</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-metrics-api/target/hbase-metrics-api-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-metrics-api/target/hbase-metrics-api-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-procedure</artifactId>
|
<artifactId>hbase-procedure</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-procedure/target/hbase-procedure-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-procedure/target/hbase-procedure-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-protocol-shaded</artifactId>
|
<artifactId>hbase-protocol-shaded</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-protocol-shaded/target/hbase-protocol-shaded-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-protocol-shaded/target/hbase-protocol-shaded-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-replication</artifactId>
|
<artifactId>hbase-replication</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-replication/target/hbase-replication-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-replication/target/hbase-replication-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-resource-bundle</artifactId>
|
<artifactId>hbase-resource-bundle</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-resource-bundle/target/hbase-resource-bundle-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-resource-bundle/target/hbase-resource-bundle-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-rest</artifactId>
|
<artifactId>hbase-rest</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-rest/target/hbase-rest-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-rest/target/hbase-rest-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-rsgroup</artifactId>
|
<artifactId>hbase-rsgroup</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-rsgroup/target/hbase-rsgroup-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-rsgroup/target/hbase-rsgroup-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<!--artifact>
|
<!--artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-shaded-miscellaneous</artifactId>
|
<artifactId>hbase-shaded-miscellaneous</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-shaded-miscellaneous/target/hbase-shaded-miscellaneous-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-shaded-miscellaneous/target/hbase-shaded-miscellaneous-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-shaded-netty</artifactId>
|
<artifactId>hbase-shaded-netty</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-shaded-netty/target/hbase-shaded-netty-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-shaded-netty/target/hbase-shaded-netty-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-shaded-protobuf</artifactId>
|
<artifactId>hbase-shaded-protobuf</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-shaded-protobuf/target/hbase-shaded-protobuf-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-shaded-protobuf/target/hbase-shaded-protobuf-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact-->
|
</artifact-->
|
||||||
<artifact>
|
<artifact>
|
||||||
<groupId>org.apache.hbase</groupId>
|
<groupId>org.apache.hbase</groupId>
|
||||||
<artifactId>hbase-zookeeper</artifactId>
|
<artifactId>hbase-zookeeper</artifactId>
|
||||||
<version>2.2.5</version>
|
<version>2.5.0</version>
|
||||||
<path>absolute-prefix/hbase-zookeeper/target/hbase-zookeeper-2.2.5.jar</path>
|
<path>absolute-prefix/hbase-zookeeper/target/hbase-zookeeper-2.5.0.jar</path>
|
||||||
<properties>
|
<properties>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<requiresJava>1.6</requiresJava>
|
<requiresJava>1.8</requiresJava>
|
||||||
</properties>
|
</properties>
|
||||||
</artifact>
|
</artifact>
|
||||||
</artifacts>
|
</artifacts>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user