Upgrade to Jetty 12.0.8

Closes gh-40250
This commit is contained in:
Andy Wilkinson 2024-04-09 12:53:04 +01:00
parent e16fd707b9
commit 8aebcd48c7
3 changed files with 4 additions and 1 deletions

View File

@ -855,7 +855,7 @@ bom {
]
}
}
library("Jetty", "12.0.7") {
library("Jetty", "12.0.8") {
group("org.eclipse.jetty.ee10") {
imports = [
"jetty-ee10-bom"

View File

@ -12,9 +12,11 @@ dependencies {
api("org.eclipse.jetty.ee10:jetty-ee10-servlets")
api("org.eclipse.jetty.ee10:jetty-ee10-webapp")
api("org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jakarta-server") {
exclude group: "jakarta.el", module: "jakarta.el-api"
exclude group: "org.eclipse.jetty", module: "jetty-jndi"
}
api("org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jetty-server") {
exclude group: "jakarta.el", module: "jakarta.el-api"
exclude group: "org.eclipse.jetty", module: "jetty-jndi"
}
}

View File

@ -684,6 +684,7 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor
}
@Override
@SuppressWarnings({ "deprecation", "removal" })
public ReadableByteChannel newReadableByteChannel() throws IOException {
return this.delegate.newReadableByteChannel();
}