geyanggang commented on code in PR #10789:
URL: https://github.com/apache/gravitino/pull/10789#discussion_r3146451080
##########
authorizations/authorization-chain/build.gradle.kts:
##########
@@ -104,6 +104,7 @@ dependencies {
exclude("javax.servlet", "servlet-api")
exclude("io.netty")
}
+ testImplementation(libs.hadoop3.hdfs.client)
Review Comment:
In **Hadoop 2**, `hadoop-hdfs `depends on `hadoop-hdfs-client` with
**compile** scope, so it was pulled in transitively. In **Hadoop 3**, this was
changed to **provided** scope, meaning it's no longer transitive and must be
declared explicitly. That's why we need to add it now.
--
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]