From 7930d2bef0e2c7f62456e013124455061dfe6dc8 Mon Sep 17 00:00:00 2001 From: Patrick Wendell Date: Mon, 2 Feb 2015 21:01:36 -0800 Subject: SPARK-3996: Add jetty servlet and continuations. These are needed transitively from the other Jetty libraries we include. It was not picked up by unit tests because we disable the UI. Author: Patrick Wendell Closes #4323 from pwendell/jetty and squashes the following commits: d8669da [Patrick Wendell] SPARK-3996: Add jetty servlet and continuations. --- core/pom.xml | 12 +++++++++++- pom.xml | 14 ++++++++++++++ streaming/pom.xml | 4 ++++ yarn/pom.xml | 4 ++++ 4 files changed, 33 insertions(+), 1 deletion(-) diff --git a/core/pom.xml b/core/pom.xml index 4d24ae93c4..2c115683fc 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -122,6 +122,16 @@ jetty-http compile + + org.eclipse.jetty + jetty-continuation + compile + + + org.eclipse.jetty + jetty-servlet + compile + org.apache.commons @@ -377,7 +387,7 @@ true true - guava,jetty-io,jetty-http,jetty-plus,jetty-util,jetty-server + guava,jetty-io,jetty-servlet,jetty-continuation,jetty-http,jetty-plus,jetty-util,jetty-server true diff --git a/pom.xml b/pom.xml index 08d1cc33e4..e25eced877 100644 --- a/pom.xml +++ b/pom.xml @@ -347,6 +347,18 @@ ${jetty.version} provided + + org.eclipse.jetty + jetty-continuation + ${jetty.version} + provided + + + org.eclipse.jetty + jetty-servlet + ${jetty.version} + provided + org.eclipse.jetty jetty-util @@ -1297,6 +1309,8 @@ org.eclipse.jetty:jetty-io org.eclipse.jetty:jetty-http + org.eclipse.jetty:jetty-continuation + org.eclipse.jetty:jetty-servlet org.eclipse.jetty:jetty-plus org.eclipse.jetty:jetty-security org.eclipse.jetty:jetty-util diff --git a/streaming/pom.xml b/streaming/pom.xml index 5efed16039..1e92ba686a 100644 --- a/streaming/pom.xml +++ b/streaming/pom.xml @@ -62,6 +62,10 @@ org.eclipse.jetty jetty-http + + org.eclipse.jetty + jetty-servlet + diff --git a/yarn/pom.xml b/yarn/pom.xml index 6bdf9d2416..65344aa873 100644 --- a/yarn/pom.xml +++ b/yarn/pom.xml @@ -80,6 +80,10 @@ org.eclipse.jetty jetty-http + + org.eclipse.jetty + jetty-servlet + -- cgit v1.2.3