Skip to content

Commit

Permalink
Merge pull request #2200 from hansva/master
Browse files Browse the repository at this point in the history
  • Loading branch information
hansva authored Jan 26, 2023
2 parents 69e79d6 + 19b5c85 commit 516604a
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 8 deletions.
43 changes: 37 additions & 6 deletions assemblies/plugins/databases/hive-assemblies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
~
-->

<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">
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand All @@ -32,10 +33,12 @@
<packaging>pom</packaging>

<name>Hop Assemblies Plugins Databases Apache Hive</name>
<description />
<description/>

<properties>
<hive-jdbc.version>3.1.3</hive-jdbc.version>
<!-- Version information : https://github.com/apache/hive/blob/master/pom.xml-->
<hive.version>3.1.3</hive.version>
<libthrift.version>0.16.0</libthrift.version>
</properties>

<dependencies>
Expand All @@ -44,17 +47,45 @@
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-common</artifactId>
<version>${hive.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<version>${hive-jdbc.version}</version>
<classifier>standalone</classifier>
<version>${hive.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hop</groupId>
<artifactId>hop-databases-hive</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-metastore</artifactId>
<version>${hive.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId>
<version>${hive.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-service</artifactId>
<version>${hive.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-service-rpc</artifactId>
<version>${hive.version}</version>
</dependency>
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>${libthrift.version}</version>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,14 @@
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>lib</outputDirectory>
<includes>
<include>org.apache.hive:hive-common:jar</include>
<include>org.apache.hive:hive-jdbc:jar</include>
<include>org.apache.hive:hive-metastore:jar</include>
<include>org.apache.hive:hive-serde:jar</include>
<include>org.apache.hive:hive-service:jar</include>
<include>org.apache.hive:hive-service-rpc:jar</include>
<include>org.apache.hadoop:hadoop-client:jar</include>
<include>org.apache.thrift:libthrift:jar</include>
</includes>
</dependencySet>
</dependencySets>
Expand Down
7 changes: 5 additions & 2 deletions plugins/databases/hive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@

<name>Hop Plugins Databases Apache Hive</name>

<properties>
<hive.version>3.1.3</hive.version>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
Expand All @@ -44,8 +48,7 @@
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<version>3.1.3</version>
<classifier>standalone</classifier>
<version>${hive.version}</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 516604a

Please sign in to comment.