Upgrade to Jetty 9.4.45.v20220203

Closes gh-29843
pull/29884/head
Stephane Nicoll 3 years ago
parent f4edcef3e0
commit 719fb2e8e5

@ -917,7 +917,7 @@ bom {
]
}
}
library("Jetty", "9.4.44.v20210927") {
library("Jetty", "9.4.45.v20220203") {
prohibit("[10.0.0-alpha0,)") {
because "it requires Java 11"
}

@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -59,7 +59,7 @@ class SampleWebJspApplicationTests {
JettyServerCustomizer jettyServerCustomizer() {
return (server) -> {
ContextHandler handler = (ContextHandler) server.getHandler();
handler.addAliasCheck(new ContextHandler.ApproveAliases());
handler.addAliasCheck((path, resource) -> true);
};
}

Loading…
Cancel
Save