Skip to content

Commit

Permalink
[bugfix][hivereader] Add missing 3rd deps (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
wgzhao authored Sep 20, 2023
1 parent 97c825d commit 2ee6564
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
30 changes: 30 additions & 0 deletions plugin/reader/hivereader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>${woodstox.version}</version>
</dependency>

<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
Expand All @@ -46,6 +58,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
<version>${commons.configuration2.version}</version>
</dependency>

<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
Expand Down Expand Up @@ -248,6 +266,18 @@
<version>${libthrift.version}</version>
</dependency>

<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>${zookeeper.version}</version>
</dependency>

<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper-jute</artifactId>
<version>${zookeeper.version}</version>
</dependency>

<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<avro.version>1.11.2</avro.version>
<commons.beanutils.version>1.9.4</commons.beanutils.version>
<commons.configuration.version>1.10</commons.configuration.version>
<commons.configuration2.version>2.9.0</commons.configuration2.version>
<commons.collections.version>4.4</commons.collections.version>
<commons.codec.version>1.15</commons.codec.version>
<commons.compress.version>1.24.0</commons.compress.version>
Expand Down Expand Up @@ -72,7 +73,7 @@
<kafka.version>3.2.3</kafka.version>
<kryo.version>5.5.0</kryo.version>
<kudu.version>1.16.0</kudu.version>
<libthrift.version>0.19.0</libthrift.version>
<libthrift.version>0.13.0</libthrift.version>
<mapreduce.version>3.2.1</mapreduce.version>
<mockito.version>2.0.2-beta</mockito.version>
<netty-buffer.version>4.1.93.Final</netty-buffer.version>
Expand Down

0 comments on commit 2ee6564

Please sign in to comment.