aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorPatrick Wendell <patrick@databricks.com>2015-02-02 21:01:36 -0800
committerPatrick Wendell <patrick@databricks.com>2015-02-02 21:01:36 -0800
commit7930d2bef0e2c7f62456e013124455061dfe6dc8 (patch)
tree7d40341e774be762afad23f6144ce9c8afeac450 /pom.xml
parent0ef38f5fad637fe96464778c1e5ec99cfcc6313c (diff)
downloadspark-7930d2bef0e2c7f62456e013124455061dfe6dc8.tar.gz
spark-7930d2bef0e2c7f62456e013124455061dfe6dc8.tar.bz2
spark-7930d2bef0e2c7f62456e013124455061dfe6dc8.zip
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 <patrick@databricks.com> Closes #4323 from pwendell/jetty and squashes the following commits: d8669da [Patrick Wendell] SPARK-3996: Add jetty servlet and continuations.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 08d1cc33e4..e25eced877 100644
--- a/pom.xml
+++ b/pom.xml
@@ -349,6 +349,18 @@
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-continuation</artifactId>
+ <version>${jetty.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-servlet</artifactId>
+ <version>${jetty.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty.version}</version>
<scope>provided</scope>
@@ -1297,6 +1309,8 @@
<include>org.eclipse.jetty:jetty-io</include>
<include>org.eclipse.jetty:jetty-http</include>
+ <include>org.eclipse.jetty:jetty-continuation</include>
+ <include>org.eclipse.jetty:jetty-servlet</include>
<include>org.eclipse.jetty:jetty-plus</include>
<include>org.eclipse.jetty:jetty-security</include>
<include>org.eclipse.jetty:jetty-util</include>