From b70fa787dd2edc4235e7696d099616b2f8db88fe Mon Sep 17 00:00:00 2001 From: Halim Kim Date: Tue, 14 Oct 2025 16:35:30 +0900 Subject: [PATCH 1/2] Downgrade Jetty version of trino ranger plugin --- plugin/trino-ranger/pom.xml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/plugin/trino-ranger/pom.xml b/plugin/trino-ranger/pom.xml index 70103b0bf52a..726e7aecceb7 100644 --- a/plugin/trino-ranger/pom.xml +++ b/plugin/trino-ranger/pom.xml @@ -15,6 +15,7 @@ Trino - Apache Ranger access control + 11.0.26 25.0.0 2.7.0 @@ -69,6 +70,10 @@ org.apache.hadoop hadoop-common + + org.eclipse.jetty + * + @@ -212,6 +217,41 @@ runtime + + org.eclipse.jetty + jetty-alpn-client + ${dep.jetty11.version} + runtime + + + + org.eclipse.jetty + jetty-client + ${dep.jetty11.version} + runtime + + + + org.eclipse.jetty + jetty-http + ${dep.jetty11.version} + runtime + + + + org.eclipse.jetty + jetty-io + ${dep.jetty11.version} + runtime + + + + org.eclipse.jetty + jetty-util + ${dep.jetty11.version} + runtime + + org.graalvm.js js-scriptengine From aab5c8bf254768c450ea9aa240301bfb5ecb226a Mon Sep 17 00:00:00 2001 From: Halim Kim Date: Thu, 16 Oct 2025 10:07:47 +0900 Subject: [PATCH 2/2] Modify Jetty exclusion in pom.xml Removed exclusion for all Jetty artifacts from a dependency and added it back to another dependency. --- plugin/trino-ranger/pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/trino-ranger/pom.xml b/plugin/trino-ranger/pom.xml index 726e7aecceb7..d3b71ae912ef 100644 --- a/plugin/trino-ranger/pom.xml +++ b/plugin/trino-ranger/pom.xml @@ -70,10 +70,6 @@ org.apache.hadoop hadoop-common - - org.eclipse.jetty - * - @@ -208,6 +204,10 @@ commons-logging commons-logging + + org.eclipse.jetty + * +