Skip to content

Commit 748ad67

Browse files
authored
Downgrade Jetty version of trino ranger plugin
1 parent 4071360 commit 748ad67

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

plugin/trino-ranger/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<description>Trino - Apache Ranger access control</description>
1616

1717
<properties>
18+
<dep.jetty11.version>11.0.26</dep.jetty11.version>
1819
<dep.graalvm.version>25.0.0</dep.graalvm.version>
1920
<dep.ranger.version>2.7.0</dep.ranger.version>
2021
</properties>
@@ -69,6 +70,10 @@
6970
<groupId>org.apache.hadoop</groupId>
7071
<artifactId>hadoop-common</artifactId>
7172
</exclusion>
73+
<exclusion>
74+
<groupId>org.eclipse.jetty</groupId>
75+
<artifactId>*</artifactId>
76+
</exclusion>
7277
</exclusions>
7378
</dependency>
7479

@@ -212,6 +217,41 @@
212217
<scope>runtime</scope>
213218
</dependency>
214219

220+
<dependency>
221+
<groupId>org.eclipse.jetty</groupId>
222+
<artifactId>jetty-alpn-client</artifactId>
223+
<version>${dep.jetty11.version}</version>
224+
<scope>runtime</scope>
225+
</dependency>
226+
227+
<dependency>
228+
<groupId>org.eclipse.jetty</groupId>
229+
<artifactId>jetty-client</artifactId>
230+
<version>${dep.jetty11.version}</version>
231+
<scope>runtime</scope>
232+
</dependency>
233+
234+
<dependency>
235+
<groupId>org.eclipse.jetty</groupId>
236+
<artifactId>jetty-http</artifactId>
237+
<version>${dep.jetty11.version}</version>
238+
<scope>runtime</scope>
239+
</dependency>
240+
241+
<dependency>
242+
<groupId>org.eclipse.jetty</groupId>
243+
<artifactId>jetty-io</artifactId>
244+
<version>${dep.jetty11.version}</version>
245+
<scope>runtime</scope>
246+
</dependency>
247+
248+
<dependency>
249+
<groupId>org.eclipse.jetty</groupId>
250+
<artifactId>jetty-util</artifactId>
251+
<version>${dep.jetty11.version}</version>
252+
<scope>runtime</scope>
253+
</dependency>
254+
215255
<dependency>
216256
<groupId>org.graalvm.js</groupId>
217257
<artifactId>js-scriptengine</artifactId>

0 commit comments

Comments
 (0)