geyanggang commented on code in PR #10532:
URL: https://github.com/apache/gravitino/pull/10532#discussion_r2992283073
##########
catalogs/hive-metastore3-libs/build.gradle.kts:
##########
@@ -26,8 +26,12 @@ plugins {
}
dependencies {
- implementation(libs.hadoop2.common)
- implementation(libs.hive3.metastore)
+ implementation(libs.hadoop2.common) {
+ exclude("org.eclipse.jetty")
+ }
+ implementation(libs.hive3.metastore) {
+ exclude("org.eclipse.jetty")
+ }
Review Comment:
PR #10465 excludes `org.eclipse.jetty.aggregate` and
`org.eclipse.jetty.orbit`, but the vulnerable jar comes from a different group:
`org.eclipse.jetty`. I have tested the code(with #10465 merged):
```
find . -path "*/build/*" -name "jetty-server-*.jar"
./catalogs/hive-metastore3-libs/build/libs/jetty-server-9.3.20.v20170531.jar
```
So we still need exclude("org.eclipse.jetty") to cover it.
--
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]