This is an automated email from the ASF dual-hosted git repository.

jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new 1f9a744c22 [#7387] fix(iceberg): standalone Iceberg REST server failed 
to start with oauth enabled (#7388)
1f9a744c22 is described below

commit 1f9a744c22dcca60d703ebffdf1a6d940fb52378
Author: FANNG <[email protected]>
AuthorDate: Sun Jun 15 01:29:03 2025 +0800

    [#7387] fix(iceberg): standalone Iceberg REST server failed to start with 
oauth enabled (#7388)
    
    ### 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.
---
 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)

Reply via email to