Skip to content

Commit 6114935

Browse files
HalimKimwendigo
authored andcommitted
Downgrade Jetty version in the ranger plugin
1 parent cd128dc commit 6114935

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

plugin/trino-ranger/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
<properties>
1818
<dep.graalvm.version>25.0.1</dep.graalvm.version>
19+
<!-- TODO: remove once Ranger upgrades to Jetty 12 -->
20+
<dep.jetty11.version>11.0.26</dep.jetty11.version>
1921
<dep.ranger.version>2.7.0</dep.ranger.version>
2022
</properties>
2123

@@ -203,6 +205,10 @@
203205
<groupId>commons-logging</groupId>
204206
<artifactId>commons-logging</artifactId>
205207
</exclusion>
208+
<exclusion>
209+
<groupId>org.eclipse.jetty</groupId>
210+
<artifactId>*</artifactId>
211+
</exclusion>
206212
</exclusions>
207213
</dependency>
208214

@@ -212,6 +218,41 @@
212218
<scope>runtime</scope>
213219
</dependency>
214220

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

0 commit comments

Comments
 (0)