Repository: spark Updated Branches: refs/heads/master e908322cd -> 2321dd1ef
[HOTFIX] Add jetty references to build for YARN module. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/2321dd1e Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/2321dd1e Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/2321dd1e Branch: refs/heads/master Commit: 2321dd1ef9b0ae70b686904fca4981549cc2d9b2 Parents: e908322 Author: Patrick Wendell <[email protected]> Authored: Mon Feb 2 14:00:14 2015 -0800 Committer: Patrick Wendell <[email protected]> Committed: Mon Feb 2 14:00:49 2015 -0800 ---------------------------------------------------------------------- yarn/pom.xml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/2321dd1e/yarn/pom.xml ---------------------------------------------------------------------- diff --git a/yarn/pom.xml b/yarn/pom.xml index 7595549..6bdf9d2 100644 --- a/yarn/pom.xml +++ b/yarn/pom.xml @@ -58,6 +58,30 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> </dependency> + + <!-- Explicit listing of transitive deps that are shaded. Otherwise, odd compiler crashes. --> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-plus</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + </dependency> + <!-- End of shaded deps. --> + <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-server-tests</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
