ajantha-bhat commented on code in PR #8500:
URL: https://github.com/apache/iceberg/pull/8500#discussion_r1933732242
##########
build.gradle:
##########
@@ -897,7 +874,9 @@ project(':iceberg-snowflake') {
}
dependencies {
- implementation project(':iceberg-core')
+ implementation(project(':iceberg-core')) {
+ exclude group: 'com.github.luben', module: 'zstd-jni'
+ }
Review Comment:
There was a compile error about duplicate class.
```
> Task :iceberg-snowflake:checkClassUniqueness FAILED
Cause: baseline-class-uniqueness detected multiple jars containing
identically named classes. Please resolve these problems, or run `./gradlew
checkClassUniqueness --fix`to accept them:
# Danger! Multiple jars contain identically named classes. This may cause
different behaviour depending on classpath ordering.
# Run ./gradlew checkClassUniqueness --fix to update this file
## runtimeClasspath
[com.github.luben:zstd-jni, net.snowflake:snowflake-jdbc]
- com.github.luben.zstd.Zstd
- com.github.luben.zstd.util.Native
- com.github.luben.zstd.util.ZstdVersion
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]