This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 077f76c36 Exclude Jetty from Polaris Server (#3865)
077f76c36 is described below
commit 077f76c363c0ac40ca3f556ea0732ca9af46be32
Author: Robert Stupp <[email protected]>
AuthorDate: Tue Feb 24 18:51:49 2026 +0100
Exclude Jetty from Polaris Server (#3865)
Jetty is a web server and servlet container with its own lifecycle. This
can easily confuse or even conflict with consuming application dependencies. If
started, it can also cause issues, potentially security issues.
---
extensions/federation/hadoop/build.gradle.kts | 1 +
1 file changed, 1 insertion(+)
diff --git a/extensions/federation/hadoop/build.gradle.kts
b/extensions/federation/hadoop/build.gradle.kts
index d75a24ee2..f4986d2e3 100644
--- a/extensions/federation/hadoop/build.gradle.kts
+++ b/extensions/federation/hadoop/build.gradle.kts
@@ -44,6 +44,7 @@ dependencies {
exclude("com.sun.jersey", "jersey-server")
exclude("com.sun.jersey", "jersey-servlet")
exclude("io.dropwizard.metrics", "metrics-core")
+ exclude(group = "org.eclipse.jetty")
}
implementation(libs.hadoop.client.api)
implementation(libs.hadoop.client.runtime)