This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new cca5121e4c [#7387] fix(iceberg): standalone Iceberg REST server failed
to start with oauth enabled (#7394)
cca5121e4c is described below
commit cca5121e4c43887f0165251e9f7c961682a31ce4
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Jun 15 09:28:37 2025 -0700
[#7387] fix(iceberg): standalone Iceberg REST server failed to start with
oauth enabled (#7394)
### What changes were proposed in this pull request?
add jwt dependences
### Why are the changes needed?
Fix: #7387
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
compile standalone IRC server and verify with oauth configuraitons.
Co-authored-by: FANNG <[email protected]>
---
iceberg/iceberg-rest-server/build.gradle.kts | 1 +
1 file changed, 1 insertion(+)
diff --git a/iceberg/iceberg-rest-server/build.gradle.kts
b/iceberg/iceberg-rest-server/build.gradle.kts
index 925ad90076..66a9bde371 100644
--- a/iceberg/iceberg-rest-server/build.gradle.kts
+++ b/iceberg/iceberg-rest-server/build.gradle.kts
@@ -47,6 +47,7 @@ dependencies {
implementation(libs.bundles.iceberg)
implementation(libs.bundles.jetty)
implementation(libs.bundles.jersey)
+ implementation(libs.bundles.jwt)
implementation(libs.bundles.log4j)
implementation(libs.bundles.metrics)
implementation(libs.bundles.prometheus)