aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wendell <patrick@databricks.com>2015-01-29 17:14:27 -0800
committerPatrick Wendell <patrick@databricks.com>2015-01-29 17:14:27 -0800
commitd2071e8f45e74117f78a42770b0c610cb98e5075 (patch)
tree37156e97f71127f1b293f9aa6d6806b6ce51db62
parent5338772f3fe9cfe1f8caee64cce2275457d8f23f (diff)
downloadspark-d2071e8f45e74117f78a42770b0c610cb98e5075.tar.gz
spark-d2071e8f45e74117f78a42770b0c610cb98e5075.tar.bz2
spark-d2071e8f45e74117f78a42770b0c610cb98e5075.zip
Revert "[WIP] [SPARK-3996]: Shade Jetty in Spark deliverables"
This reverts commit f240fe390b46b6e9859ce74108c5a5fba5c5f8b3.
-rwxr-xr-xbin/compute-classpath.sh4
-rw-r--r--core/pom.xml22
-rw-r--r--network/common/pom.xml12
-rw-r--r--pom.xml32
4 files changed, 15 insertions, 55 deletions
diff --git a/bin/compute-classpath.sh b/bin/compute-classpath.sh
index a8c344b1ca..9e8d0b7851 100755
--- a/bin/compute-classpath.sh
+++ b/bin/compute-classpath.sh
@@ -50,8 +50,8 @@ fi
if [ -n "$SPARK_PREPEND_CLASSES" ]; then
echo "NOTE: SPARK_PREPEND_CLASSES is set, placing locally compiled Spark"\
"classes ahead of assembly." >&2
- # Spark classes
CLASSPATH="$CLASSPATH:$FWDIR/core/target/scala-$SPARK_SCALA_VERSION/classes"
+ CLASSPATH="$CLASSPATH:$FWDIR/core/target/jars/*"
CLASSPATH="$CLASSPATH:$FWDIR/repl/target/scala-$SPARK_SCALA_VERSION/classes"
CLASSPATH="$CLASSPATH:$FWDIR/mllib/target/scala-$SPARK_SCALA_VERSION/classes"
CLASSPATH="$CLASSPATH:$FWDIR/bagel/target/scala-$SPARK_SCALA_VERSION/classes"
@@ -63,8 +63,6 @@ if [ -n "$SPARK_PREPEND_CLASSES" ]; then
CLASSPATH="$CLASSPATH:$FWDIR/sql/hive/target/scala-$SPARK_SCALA_VERSION/classes"
CLASSPATH="$CLASSPATH:$FWDIR/sql/hive-thriftserver/target/scala-$SPARK_SCALA_VERSION/classes"
CLASSPATH="$CLASSPATH:$FWDIR/yarn/stable/target/scala-$SPARK_SCALA_VERSION/classes"
- # Jars for shaded deps in their original form (copied here during build)
- CLASSPATH="$CLASSPATH:$FWDIR/core/target/jars/*"
fi
# Use spark-assembly jar from either RELEASE or assembly directory
diff --git a/core/pom.xml b/core/pom.xml
index d91f4ee024..31e919a1c8 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -94,36 +94,23 @@
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</dependency>
-
- <!-- Jetty dependencies promoted to compile here so they are shaded
- and inlined into spark-core jar -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-plus</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-security</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-http</artifactId>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
@@ -361,24 +348,19 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
- <!-- When using SPARK_PREPEND_CLASSES Spark classes compiled locally don't use
- shaded deps. So here we store jars in their original form which are added
- when the classpath is computed. -->
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
- <configuration>
+ <configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<useSubDirectoryPerType>true</useSubDirectoryPerType>
- <includeArtifactIds>
- guava,jetty-io,jetty-http,jetty-plus,jetty-util,jetty-server
- </includeArtifactIds>
+ <includeArtifactIds>guava</includeArtifactIds>
<silent>true</silent>
</configuration>
</execution>
diff --git a/network/common/pom.xml b/network/common/pom.xml
index 8f7c924d6b..5a9bbe105d 100644
--- a/network/common/pom.xml
+++ b/network/common/pom.xml
@@ -101,6 +101,18 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <configuration>
+ <shadedArtifactAttached>false</shadedArtifactAttached>
+ <artifactSet>
+ <includes>
+ <include>com.google.guava:guava</include>
+ </includes>
+ </artifactSet>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>
diff --git a/pom.xml b/pom.xml
index 63c0a2af9e..4adfdf3eb8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -337,39 +337,25 @@
</exclusion>
</exclusions>
</dependency>
-
- <!-- Shaded deps marked as provided. These are promoted to compile scope
- in the modules where we want the shaded classes to appear in the
- associated jar. -->
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-http</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>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-security</artifactId>
<version>${jetty.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-plus</artifactId>
<version>${jetty.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
@@ -377,8 +363,6 @@
<version>14.0.1</version>
<scope>provided</scope>
</dependency>
- <!-- End of shaded deps -->
-
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
@@ -1292,27 +1276,11 @@
<shadedArtifactAttached>false</shadedArtifactAttached>
<artifactSet>
<includes>
- <!-- At a minimum we must include this to force effective pom generation -->
<include>org.spark-project.spark:unused</include>
-
- <include>org.eclipse.jetty:jetty-io</include>
- <include>org.eclipse.jetty:jetty-http</include>
- <include>org.eclipse.jetty:jetty-plus</include>
- <include>org.eclipse.jetty:jetty-security</include>
- <include>org.eclipse.jetty:jetty-util</include>
- <include>org.eclipse.jetty:jetty-server</include>
- <include>com.google.guava:guava</include>
</includes>
</artifactSet>
<relocations>
<relocation>
- <pattern>org.eclipse.jetty</pattern>
- <shadedPattern>org.spark-project.jetty</shadedPattern>
- <includes>
- <include>org.eclipse.jetty.**</include>
- </includes>
- </relocation>
- <relocation>
<pattern>com.google.common</pattern>
<shadedPattern>org.spark-project.guava</shadedPattern>
<excludes>