Upgrade to Jetty 9.1.0 .RC0

This commit upgrades Jetty to the latest available 9.1.x version while
also preserving compatibility with 9.0.x.
This commit is contained in:
Brian Clozel
2013-10-29 19:26:14 +01:00
committed by Rossen Stoyanchev
parent 75e61cc983
commit 397d52ad17
4 changed files with 32 additions and 20 deletions

View File

@@ -53,7 +53,6 @@ public class AbstractJettyServerTestCase {
ServletContextHandler handler = new ServletContextHandler();
handler.setContextPath("/");
handler.addServlet(new ServletHolder(new EchoServlet()), "/echo");
handler.addServlet(new ServletHolder(new EchoServlet()), "/echo");
handler.addServlet(new ServletHolder(new StatusServlet(200)), "/status/ok");
handler.addServlet(new ServletHolder(new StatusServlet(404)), "/status/notfound");