Repository: spark Updated Branches: refs/heads/master 6d37e1eb9 -> 99b7187c2
[SPARK-13780][SQL] Add missing dependency to build. This is needed to avoid odd compiler errors when building just the sql package with maven, because of odd interactions between scalac and shaded classes. Author: Marcelo Vanzin <[email protected]> Closes #11640 from vanzin/SPARK-13780. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/99b7187c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/99b7187c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/99b7187c Branch: refs/heads/master Commit: 99b7187c2dce4c73829b9b32de80b02a053763cc Parents: 6d37e1e Author: Marcelo Vanzin <[email protected]> Authored: Fri Mar 11 10:27:38 2016 -0800 Committer: Marcelo Vanzin <[email protected]> Committed: Fri Mar 11 10:27:38 2016 -0800 ---------------------------------------------------------------------- sql/core/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/99b7187c/sql/core/pom.xml ---------------------------------------------------------------------- diff --git a/sql/core/pom.xml b/sql/core/pom.xml index 89e01fc..708670b 100644 --- a/sql/core/pom.xml +++ b/sql/core/pom.xml @@ -84,6 +84,10 @@ <artifactId>parquet-hadoop</artifactId> </dependency> <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlet</artifactId> + </dependency> + <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${fasterxml.jackson.version}</version> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
