This is an automated email from the ASF dual-hosted git repository.
diwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-spark-connector.git
The following commit(s) were added to refs/heads/master by this push:
new 3938954 [fix](connector) remove arrow jdbc dependency (#254)
3938954 is described below
commit 393895460ee7d8f280fc38164f53bc1cf802520c
Author: gnehil <[email protected]>
AuthorDate: Tue Jan 7 09:51:54 2025 +0800
[fix](connector) remove arrow jdbc dependency (#254)
---
spark-doris-connector/pom.xml | 10 ++++------
spark-doris-connector/spark-doris-connector-base/pom.xml | 9 ++++-----
2 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/spark-doris-connector/pom.xml b/spark-doris-connector/pom.xml
index 3aecc53..a7380ab 100644
--- a/spark-doris-connector/pom.xml
+++ b/spark-doris-connector/pom.xml
@@ -237,6 +237,10 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.apache.arrow</groupId>
+ <artifactId>flight-sql-jdbc-driver</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -280,12 +284,6 @@
<version>${netty.version}</version>
</dependency>
- <dependency>
- <groupId>org.apache.arrow</groupId>
- <artifactId>flight-sql-jdbc-core</artifactId>
- <version>${arrow.version}</version>
- </dependency>
-
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
diff --git a/spark-doris-connector/spark-doris-connector-base/pom.xml
b/spark-doris-connector/spark-doris-connector-base/pom.xml
index 0e26fc2..39c6904 100644
--- a/spark-doris-connector/spark-doris-connector-base/pom.xml
+++ b/spark-doris-connector/spark-doris-connector-base/pom.xml
@@ -136,14 +136,13 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.apache.arrow</groupId>
+ <artifactId>flight-sql-jdbc-driver</artifactId>
+ </exclusion>
</exclusions>
</dependency>
- <dependency>
- <groupId>org.apache.arrow</groupId>
- <artifactId>flight-sql-jdbc-core</artifactId>
- </dependency>
-
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]