aboutsummaryrefslogtreecommitdiff
path: root/external/kinesis-asl-assembly
diff options
context:
space:
mode:
authormcheah <mcheah@palantir.com>2016-05-05 10:51:03 +0100
committerSean Owen <sowen@cloudera.com>2016-05-05 10:51:03 +0100
commitb7fdc23ccc5967de5799d8cf6f14289e71f29a1e (patch)
tree981cfe71675987b87c88fb5f926685c6575743b9 /external/kinesis-asl-assembly
parent592fc455639462fcf00ec02860d7c33470b73273 (diff)
downloadspark-b7fdc23ccc5967de5799d8cf6f14289e71f29a1e.tar.gz
spark-b7fdc23ccc5967de5799d8cf6f14289e71f29a1e.tar.bz2
spark-b7fdc23ccc5967de5799d8cf6f14289e71f29a1e.zip
[SPARK-12154] Upgrade to Jersey 2
## What changes were proposed in this pull request? Replace com.sun.jersey with org.glassfish.jersey. Changes to the Spark Web UI code were required to compile. The changes were relatively standard Jersey migration things. ## How was this patch tested? I did a manual test for the standalone web APIs. Although I didn't test the functionality of the security filter itself, the code that changed non-trivially is how we actually register the filter. I attached a debugger to the Spark master and verified that the SecurityFilter code is indeed invoked upon hitting /api/v1/applications. Author: mcheah <mcheah@palantir.com> Closes #12715 from mccheah/feature/upgrade-jersey.
Diffstat (limited to 'external/kinesis-asl-assembly')
-rw-r--r--external/kinesis-asl-assembly/pom.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/external/kinesis-asl-assembly/pom.xml b/external/kinesis-asl-assembly/pom.xml
index d1c38c7ca5..e057b78abd 100644
--- a/external/kinesis-asl-assembly/pom.xml
+++ b/external/kinesis-asl-assembly/pom.xml
@@ -66,13 +66,18 @@
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-server</artifactId>
+ <groupId>org.glassfish.jersey.core</groupId>
+ <artifactId>jersey-client</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>com.sun.jersey</groupId>
- <artifactId>jersey-core</artifactId>
+ <groupId>org.glassfish.jersey.core</groupId>
+ <artifactId>jersey-common</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.glassfish.jersey.core</groupId>
+ <artifactId>jersey-server</artifactId>
<scope>provided</scope>
</dependency>
<dependency>