yuqi1129 commented on code in PR #4521:
URL: https://github.com/apache/gravitino/pull/4521#discussion_r1730575483
##########
catalogs/catalog-jdbc-doris/build.gradle.kts:
##########
@@ -61,7 +65,11 @@ tasks {
}
val copyCatalogLibs by registering(Copy::class) {
dependsOn("jar", "runtimeJars")
- from("build/libs")
+ from("build/libs") {
+ exclude("guava-*.jar")
+ exclude("log4j-*.jar")
+ exclude("slf4j-*.jar")
+ }
Review Comment:
> > If we're using them only in compile, maybe we can change from
"implementation" to "compileOnly"?
>
> Yeah, let me have a try.
It seems that making it `compileOnly` can't pass tests and runs into classes
not found problem.
--
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]