Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
f935c77b6a
!24 [sync] PR-21: Add requires mysql-server
From: @openeuler-sync-bot 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-06-09 04:49:14 +00:00
dongjie110
0aaead22f3 Add requires mysql-server
(cherry picked from commit e7ab95044a9d2d86c4b2a6d45b0acf53e6de5245)
2023-06-09 09:06:35 +08:00
openeuler-ci-bot
2fe75581ff
!19 [sync] PR-15: update to v3.1.3 to fix CVE-2021-34538
From: @openeuler-sync-bot 
Reviewed-by: @wuzeyi1 
Signed-off-by: @wuzeyi1
2022-09-15 03:40:05 +00:00
yangzhao_kl
32300216bd update to v3.1.3
(cherry picked from commit b8fa68603c5dd89c410e9c579e2bb8a75c86ea8b)
2022-09-15 09:06:00 +08:00
openeuler-ci-bot
d928ae7da5 !8 修改sql脚本的普通用户权限
From: @wang--ge
Reviewed-by: @zhengzhenyu
Signed-off-by: @zhengzhenyu
2021-07-15 03:23:55 +00:00
wang--ge
50123bc9f9 modify sql script's privilege 2021-07-14 18:19:41 +08:00
openeuler-ci-bot
4a95393aaa !5 在/usr/bin目录下创建hive包ext文件夹软连接
From: @wang--ge
Reviewed-by: @small_leek,@zhengzhenyu
Signed-off-by: @small_leek,@zhengzhenyu
2021-06-10 11:32:09 +08:00
wang--ge
bc53a538ed add soft link ext to /usr/bin 2021-06-09 18:35:43 +08:00
openeuler-ci-bot
8dc7996abd !2 Init package hive
From: @wang--ge
Reviewed-by: @hht8,@small_leek,@zhengzhenyu
Signed-off-by: @zhengzhenyu
2021-05-19 14:12:12 +08:00
wang--ge
9e8eeef3f1 init package 2021-05-19 11:20:40 +08:00
6 changed files with 744 additions and 0 deletions

BIN
guava-27.0-jre.jar Normal file

Binary file not shown.

143
hive.spec Normal file
View File

@ -0,0 +1,143 @@
%define __os_install_post %{nil}
Name: hive
Version: 3.1.3
Release: 2
Summary: The Apache Hadoop data warehouse
License: Apache-2.0 and Python-2.0 and MPL-2.0 and BSD and ICU
URL: http://hive.apache.org/
Source0: https://github.com/apache/%{name}/archive/refs/tags/rel/release-%{version}.tar.gz
Source1: xmvn-reactor
Source2: pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
Source3: guava-27.0-jre.jar
Source4: mysql-connector-java.jar
BuildRequires: cmake java-1.8.0-openjdk-devel maven xmvn xmvn-install gradle-local maven-local protobuf2-devel protobuf2-compiler
Requires: java-1.8.0-openjdk
Requires: hadoop-3.1-client hadoop-3.1-common hadoop-3.1-common-native hadoop-3.1-devel hadoop-3.1-hdfs hadoop-3.1-httpfs
Requires: hadoop-3.1-mapreduce hadoop-3.1-maven-plugin hadoop-3.1-yarn hadoop-3.1-yarn-security
Requires: mysql-server
BuildArch: noarch
%description
The Apache Hive data warehouse software facilitates querying and
managing large datasets residing in distributed storage. Apache Hive
provides a mechanism to project structure onto this data and query
the data using a SQL-like language called HiveQL.
%prep
%setup -q -n %{name}-rel-release-%{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
mvn install:install-file -DgroupId=org.pentaho -DartifactId=pentaho-aggdesigner-algorithm -Dversion=5.1.5-jhyde -Dpackaging=jar -Dfile=%{SOURCE2}
cp %{SOURCE1} ./.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
find -name "*.jar" -delete
# missing shebang
sed -i -e '1d;2i#!/usr/bin/env bash' bin/hive-config.sh
%build
# for javadoc encoding
export LC_ALL=en_US.UTF-8
mvn package -DskipTests -Pdist -Dtar
%install
%mvn_install -J build/dist/docs
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/bin
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/conf
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/lib
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/scripts
cp -f packaging/target/apache-%{name}-%{version}-bin/apache-%{name}-%{version}-bin/lib/hive-storage-api-2.7.0.jar %{buildroot}%{_datadir}/java/%{name}/
tar -C packaging/target -zxf packaging/target/apache-%{name}-%{version}-bin.tar.gz
chmod 644 packaging/target/apache-%{name}-%{version}-bin/apache-%{name}-%{version}-bin/scripts/llap/sql/serviceCheckScript.sql
pushd packaging/target/apache-%{name}-%{version}-bin/apache-%{name}-%{version}-bin
cp -arf bin/* %{buildroot}%{_datadir}/%{name}/bin
cp -arf conf/* %{buildroot}%{_datadir}/%{name}/conf
rm -rf lib/guava-19.0.jar
cp %{SOURCE3} lib/
cp %{SOURCE4} lib/
cp -arf lib/* %{buildroot}%{_datadir}/%{name}/lib
cp -arf scripts/* %{buildroot}%{_datadir}/%{name}/scripts
popd
# create the root from here
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/bin/ext
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/bin/ext/util
install -d -m 0755 %{buildroot}%{_sysconfdir}/%{name}
# bin
install -dm 0755 %{buildroot}%{_bindir}
for f in %{name} hive-config.sh init-hive-dfs.sh metatool schematool; do
install -p bin/${f} %{buildroot}%{_datadir}/%{name}/bin
ln -s %{_datadir}/%{name}/bin/${f} %{buildroot}%{_bindir}/${f}
done
# bin/ext/util
cp -pr bin/ext/* %{buildroot}%{_datadir}/%{name}/bin/ext
# don't have these just yet...
for f in beeline.sh hiveserver2.sh; do
rm %{buildroot}%{_datadir}/%{name}/bin/ext/${f}
done
ln -s %{_datadir}/%{name}/bin/ext %{buildroot}%{_bindir}/ext
# conf
for f in hive-default.xml hive-env.sh hive-exec-log4j2.properties hive-log4j2.properties; do
cp -p packaging/target/apache-hive-%{version}-bin/conf/${f}.template %{buildroot}%{_datadir}/%{name}/conf/${f}
ln -s %{_datadir}/%{name}/conf/${f} %{buildroot}%{_sysconfdir}/%{name}/${f}
done
# manually replace the hive jars with their links
rm %{buildroot}%{_datadir}/%{name}/lib/hive-*.jar
for m in accumulo-handler beeline classification cli common contrib druid-handler exec hbase-handler hplsql jdbc jdbc-handler kryo-registrator llap-client llap-common llap-ext-client llap-server llap-tez metastore serde service service-rpc shims shims-0.23 shims-common shims-scheduler standalone-metastore streaming testutils upgrade-acid vector-code-gen; do
ln -s %{_javadir}/%{name}/%{name}-${m}.jar %{buildroot}%{_datadir}/%{name}/lib/%{name}-${m}-%{version}.jar
done
ln -s %{_javadir}/%{name}/hcatalog-core.jar %{buildroot}%{_datadir}/%{name}/lib/%{name}-hcatalog-core-%{version}.jar
ln -s %{_javadir}/%{name}/hcatalog-server-extensions.jar %{buildroot}%{_datadir}/%{name}/lib/%{name}-hcatalog-server-extensions-%{version}.jar
ln -s %{_javadir}/%{name}/hive-storage-api-2.7.0.jar %{buildroot}%{_datadir}/%{name}/lib/hive-storage-api-2.7.0.jar
# MR needs the shims and thrift jars in it's classpath
mkdir -p -m0755 %{buildroot}/%{_datadir}/hadoop/mapreduce/lib
ln -s %{_javadir}/%{name}/%{name}-shims.jar %{buildroot}%{_datadir}/hadoop/mapreduce/lib/%{name}-shims.jar
%check
# tests are not run due to dependency on hive hbase support
# which is currently unavailable
%files -f .mfiles
%doc LICENSE NOTICE
%{_bindir}/*
%{_datadir}/%{name}
%{_sysconfdir}/%{name}
%dir %{_javadir}/%{name}
%{_datadir}/hadoop/mapreduce/lib/%{name}-shims.jar
%{_datadir}/java/%{name}/hive-storage-api-2.7.0.jar
%changelog
* Tue Sep 13 2022 Jie Dong <dongjie34@h-partners.com> 3.1.3-2
- Add requires mysql-server
* Tue Sep 13 2022 Zhao Yang <yangzhao1@kylinos.cn> 3.1.3-1
- update to version 3.1.3
* Wed Jul 14 2021 Ge Wang <wangge20@huawei.com> 3.1.2-3
- Modify sql script's privilege
* Wed Jun 09 2021 Ge Wang <wangge20@huawei.com> 3.1.2-2
- Add soft link ext to directory /usr/bin due to hive's shell starting info
* Tue Apr 13 2021 Ge Wang <wangge20@huawei.com> 3.1.2-1
- Init package

BIN
mysql-connector-java.jar Normal file

Binary file not shown.

Binary file not shown.

BIN
release-3.1.3.tar.gz Normal file

Binary file not shown.

601
xmvn-reactor Normal file
View File

@ -0,0 +1,601 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata xmlns="http://fedorahosted.org/xmvn/METADATA/3.0.0">
<artifacts>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-beeline</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/beeline/target/hive-beeline-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-beeline</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/beeline/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-cli</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/cli/target/hive-cli-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-cli</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<path>absolute-prefix/cli/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-common</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/common/target/hive-common-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-common</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/common/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-contrib</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/contrib/target/hive-contrib-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-contrib</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/contrib/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/ql/target/hive-exec-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/ql/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/jdbc/target/hive-jdbc-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/jdbc/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-metastore</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/metastore/target/hive-metastore-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-metastore</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/metastore/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/serde/target/hive-serde-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/serde/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-service</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/service/target/hive-service-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-service</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/service/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-shims</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/shims/aggregator/target/hive-shims-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-shims</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/shims/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--================================================================================-->
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-core</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/core/target/hive-hcatalog-core-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-core</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/core/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-pig-adapter</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/target/hive-hcatalog-pig-adapter-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-pig-adapter</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-server-extensions</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/server-extensions/target/hive-hcatalog-server-extensions-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-server-extensions</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/server-extensions/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat-java-client</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/webhcat/java-client/target/hive-webhcat-java-client-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat-java-client</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/webhcat/java-client/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/webhcat/svr/target/hive-webhcat-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat</artifactId>
<extension>pom</extension>
<version>3.1.3</version>
<path>absolute-prefix/hcatalog/webhcat/svr/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--=========================================================-->
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-accumulo-handler</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/accumulo-handler/target/hive-accumulo-handler-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-ant</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/ant/target/hive-ant-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-hbase-handler</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hbase-handler/target/hive-hbase-handler-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-hplsql</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hplsql/target/hive-hplsql-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-hwi</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/hwi/target/hive-hwi-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-llap-client</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/llap-client/target/hive-llap-client-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-llap-common</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/llap-common/target/hive-llap-common-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-llap-ext-client</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/llap-ext-client/target/hive-llap-ext-client-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-llap-server</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/llap-server/target/hive-llap-server-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-llap-tez</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/llap-tez/target/hive-llap-tez-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-orc</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/orc/target/hive-orc-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-service-rpc</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/service-rpc/target/hive-service-rpc-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.shims</groupId>
<artifactId>hive-shims-0.23</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/shims/0.23/target/hive-shims-0.23-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.shims</groupId>
<artifactId>hive-shims-common</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/shims/common/target/hive-shims-common-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive.shims</groupId>
<artifactId>hive-shims-scheduler</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/shims/scheduler/target/hive-shims-scheduler-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-storage-api</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/storage-api/target/hive-storage-api-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-testutils</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/testutils/target/hive-testutils-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-classification</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/classification/target/hive-classification-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-druid-handler</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/druid-handler/target/hive-druid-handler-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc-handler</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/jdbc-handler/target/hive-jdbc-handler-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-kryo-registrator</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/kryo-registrator/target/hive-kryo-registrator-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-standalone-metastore</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/standalone-metastore/target/hive-standalone-metastore-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-streaming</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/streaming/target/hive-streaming-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-upgrade-acid</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/upgrade-acid/target/hive-upgrade-acid-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hive</groupId>
<artifactId>hive-vector-code-gen</artifactId>
<version>3.1.3</version>
<path>absolute-prefix/vector-code-gen/target/hive-vector-code-gen-3.1.3.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
</properties>
</artifact>
</artifacts>
</metadata>