This is an automated email from the ASF dual-hosted git repository.
yzou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 7a086fc37 Exclude unused dependency for polaris spark client
dependency (#1933)
7a086fc37 is described below
commit 7a086fc37fabe553207b283fac24eb39ce50c927
Author: Yun Zou <[email protected]>
AuthorDate: Tue Jun 24 18:15:24 2025 -0700
Exclude unused dependency for polaris spark client dependency (#1933)
---
plugins/spark/v3.5/spark/build.gradle.kts | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/plugins/spark/v3.5/spark/build.gradle.kts
b/plugins/spark/v3.5/spark/build.gradle.kts
index d13255bf6..d61c5fd5b 100644
--- a/plugins/spark/v3.5/spark/build.gradle.kts
+++ b/plugins/spark/v3.5/spark/build.gradle.kts
@@ -45,17 +45,7 @@ val scalaLibraryVersion =
dependencies {
// TODO: extract a polaris-rest module as a thin layer for
// client to depends on.
- implementation(project(":polaris-core")) {
- exclude("org.apache.iceberg", "*")
- exclude("com.azure", "*")
- exclude("software.amazon.awssdk", "*")
- exclude("com.google.cloud", "*")
- exclude("io.airlift", "*")
- exclude("io.smallrye", "*")
- exclude("io.smallrye.common", "*")
- exclude("io.swagger", "*")
- exclude("org.apache.commons", "*")
- }
+ implementation(project(":polaris-core")) { isTransitive = false }
implementation(
"org.apache.iceberg:iceberg-spark-runtime-${sparkMajorVersion}_${scalaVersion}:${icebergVersion}"