FANNG1 commented on code in PR #4548:
URL: https://github.com/apache/gravitino/pull/4548#discussion_r1739630410


##########
catalogs/catalog-lakehouse-iceberg/build.gradle.kts:
##########
@@ -31,12 +31,22 @@ val icebergVersion: String = libs.versions.iceberg.get()
 val scalaCollectionCompatVersion: String = 
libs.versions.scala.collection.compat.get()
 
 dependencies {
-  implementation(project(":api"))
+  implementation(project(":api")) {
+    exclude("*")
+  }
   implementation(project(":catalogs:catalog-common"))
-  implementation(project(":common"))
-  implementation(project(":core"))
-  implementation(project(":iceberg:iceberg-common"))
-  implementation(project(":server-common"))
+  implementation(project(":common")) {
+    exclude("*")
+  }
+  implementation(project(":core")) {
+    exclude("*")
+  }
+  implementation(project(":iceberg:iceberg-common")) {

Review Comment:
   some jars in `:iceberg:iceberg-common` are critical, we couldn't exclude all 
the dependences,  we could exclude extra jars in the build file of  
`:iceberg:iceberg-common`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to