caican00 commented on code in PR #4547:
URL: https://github.com/apache/gravitino/pull/4547#discussion_r1760057997
##########
catalogs/catalog-lakehouse-paimon/build.gradle.kts:
##########
@@ -30,40 +30,55 @@ val sparkMajorVersion: String =
sparkVersion.substringBeforeLast(".")
val paimonVersion: String = libs.versions.paimon.get()
dependencies {
- implementation(project(":api"))
- implementation(project(":common"))
- implementation(project(":core"))
+ implementation(project(":api")) {
+ exclude("*")
+ }
+ implementation(project(":common")) {
+ exclude("*")
+ }
+ implementation(project(":core")) {
+ exclude("*")
+ }
implementation(libs.bundles.paimon) {
exclude("com.sun.jersey")
exclude("javax.servlet")
+ exclude("org.apache.hive")
+ exclude("org.apache.hbase")
+ exclude("it.unimi.dsi")
+ exclude("org.mortbay.jetty")
+ exclude("org.apache.parquet")
+ exclude("org.mortbay.jetty:jetty")
+ exclude("org.mortbay.jetty:jetty-util")
+ exclude("org.mortbay.jetty:jetty-sslengine")
+ exclude("org.eclipse.jetty.aggregate:jetty-all")
}
implementation(libs.bundles.log4j)
implementation(libs.commons.lang3)
- implementation(libs.caffeine)
implementation(libs.guava)
implementation(libs.hadoop2.common) {
exclude("com.github.spotbugs")
exclude("com.sun.jersey")
exclude("javax.servlet")
+ exclude("org.mortbay.jetty")
}
implementation(libs.hadoop2.hdfs) {
exclude("com.sun.jersey")
exclude("javax.servlet")
+ exclude("org.mortbay.jetty")
}
- implementation(libs.hadoop2.mapreduce.client.core) {
Review Comment:
@LiuQhahah It is necessary for spark IT, please roll it back. and then
please update the pr title.
--
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]