From 21d5ca128bf3afd5c2d4c7fcc56240e28443474f Mon Sep 17 00:00:00 2001 From: Marcelo Vanzin Date: Wed, 6 Apr 2016 19:33:48 -0700 Subject: [SPARK-14134][CORE] Change the package name used for shading classes. The current package name uses a dash, which is a little weird but seemed to work. That is, until a new test tried to mock a class that references one of those shaded types, and then things started failing. Most changes are just noise to fix the logging configs. For reference, SPARK-8815 also raised this issue, although at the time it did not cause any issues in Spark, so it was not addressed. Author: Marcelo Vanzin Closes #11941 from vanzin/SPARK-14134. --- pom.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 984b2859ef..66a34e4bdf 100644 --- a/pom.xml +++ b/pom.xml @@ -182,6 +182,9 @@ ${java.home} + + org.spark_project + ${project.build.directory}/scala-${scala.binary.version}/jars @@ -2204,14 +2207,14 @@ org.eclipse.jetty - org.spark-project.jetty + ${spark.shade.packageName}.jetty org.eclipse.jetty.** com.google.common - org.spark-project.guava + ${spark.shade.packageName}.guava -- cgit v1.2.3