-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#6375] improvment(catalog-hadoop): Remove protobuf-java
to avoid conflict with authorization module
#6376
[#6375] improvment(catalog-hadoop): Remove protobuf-java
to avoid conflict with authorization module
#6376
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,8 @@ dependencies { | |
exclude("org.eclipse.jetty", "*") | ||
exclude("io.netty") | ||
exclude("org.fusesource.leveldbjni") | ||
// Exclude protobuf-java to avoid conflict with; | ||
exclude("com.google.protobuf", "protobuf-java") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is it still useful as you exclude the package in copy task There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is exclude the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm afraid excluding it in the gradle dependencies may be more general.
Some modules use copy task to exclude jars because using |
||
} | ||
implementation(libs.slf4j.api) | ||
implementation(libs.awaitility) | ||
|
@@ -101,6 +103,9 @@ tasks { | |
exclude("javax.servlet-*.jar") | ||
exclude("kerb-*.jar") | ||
exclude("kerby-*.jar") | ||
// As L55-56 takes no effect actually in the final distribution package, we need to exclude | ||
yuqi1129 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// protobuf-java here | ||
exclude("protobuf-java-*.jar") | ||
} | ||
into("$rootDir/distribution/package/catalogs/hadoop/libs") | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment is not complete?