Copilot commented on code in PR #9368:
URL: https://github.com/apache/gravitino/pull/9368#discussion_r2584434754


##########
lance/lance-rest-server/build.gradle.kts:
##########
@@ -48,13 +46,19 @@ dependencies {
   implementation(libs.commons.lang3)
   implementation(libs.lance.namespace.core) {
     exclude(group = "com.lancedb", module = "lance-core")
+    exclude(group = "com.google.guava", module = "guava") // provided by 
gravitino

Review Comment:
   Duplicate dependency: `libs.commons.lang3` is declared twice (lines 40 and 
46). Remove one of the duplicate entries.
   ```suggestion
     implementation(libs.lance.namespace.core) {
       exclude(group = "com.lancedb", module = "lance-core")
       exclude(group = "com.google.guava", module = "guava") // provided by 
gravitino
       exclude(group = "com.google.guava", module = "guava") // provided by 
gravitino
   ```



-- 
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