Skip to content

Commit

Permalink
Upgrade to Jetty 12.0.8
Browse files Browse the repository at this point in the history
Closes gh-40250
  • Loading branch information
wilkinsona committed Apr 10, 2024
1 parent e16fd70 commit 8aebcd4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ bom {
]
}
}
library("Jetty", "12.0.7") {
library("Jetty", "12.0.8") {
group("org.eclipse.jetty.ee10") {
imports = [
"jetty-ee10-bom"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ public InputStream newInputStream() throws IOException {
}

@Override
@SuppressWarnings({ "deprecation", "removal" })
public ReadableByteChannel newReadableByteChannel() throws IOException {
return this.delegate.newReadableByteChannel();
}
Expand Down

0 comments on commit 8aebcd4

Please sign in to comment.