This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch catalog-hive
in repository https://gitbox.apache.org/repos/asf/doris-shade.git
The following commit(s) were added to refs/heads/catalog-hive by this push:
new eda66f5 [paimon-catalog] Add paimon-catalog (#18)
eda66f5 is described below
commit eda66f57a3ab473babb3367c7586c067e4780b7e
Author: yuxuan-luo <[email protected]>
AuthorDate: Thu Jun 1 23:03:17 2023 +0800
[paimon-catalog] Add paimon-catalog (#18)
Co-authored-by: hugoluo <[email protected]>
---
hive-catalog-shade/pom.xml | 55 ++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 53 insertions(+), 2 deletions(-)
diff --git a/hive-catalog-shade/pom.xml b/hive-catalog-shade/pom.xml
index 9a3e7b1..42a3ea9 100644
--- a/hive-catalog-shade/pom.xml
+++ b/hive-catalog-shade/pom.xml
@@ -31,6 +31,7 @@ under the License.
<hadoop.version>3.3.4</hadoop.version>
<hive.storage.api.version>2.8.1</hive.storage.api.version>
<iceberg-hive-metastore.version>1.1.0</iceberg-hive-metastore.version>
+
<paimon-hive-metastore.version>0.4-SNAPSHOT</paimon-hive-metastore.version>
</properties>
<dependencyManagement>
@@ -328,6 +329,56 @@ under the License.
<artifactId>hive-classification</artifactId>
<version>${hive.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.paimon</groupId>
+ <artifactId>paimon-hive-connector-3.1</artifactId>
+ <version>${paimon-hive-metastore.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.httpcomponents.client5</groupId>
+ <artifactId>httpclient5</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.roaringbitmap</groupId>
+ <artifactId>RoaringBitmap</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-metastore</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-common</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-hdfs</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.paimon</groupId>
+ <artifactId>paimon-hive-common</artifactId>
+ <version>${paimon-hive-metastore.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.httpcomponents.client5</groupId>
+ <artifactId>httpclient5</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.roaringbitmap</groupId>
+ <artifactId>RoaringBitmap</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-metastore</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-hdfs</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
@@ -387,11 +438,11 @@ under the License.
<relocation>
<pattern>org.apache.commons.lang3</pattern>
<shadedPattern>shade.doris.hive.org.apache.commons.lang3</shadedPattern>
- </relocation>
+ </relocation>
<relocation>
<pattern>org.apache.commons.cli</pattern>
<shadedPattern>shade.doris.hive.org.apache.commons.cli</shadedPattern>
- </relocation>
+ </relocation>
</relocations>
</configuration>
</execution>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]