aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJey Kottalam <jey@cs.berkeley.edu>2013-08-15 16:32:15 -0700
committerJey Kottalam <jey@cs.berkeley.edu>2013-08-16 13:50:12 -0700
commit741ecd56fe714fe42c22518aefcfa48fa3a448c7 (patch)
tree47c097bf574dc915a36cc6eecb36fd947bab5003
parent9dd15fe700ad8f52739cce58cbdf198fab8fd5d8 (diff)
downloadspark-741ecd56fe714fe42c22518aefcfa48fa3a448c7.tar.gz
spark-741ecd56fe714fe42c22518aefcfa48fa3a448c7.tar.bz2
spark-741ecd56fe714fe42c22518aefcfa48fa3a448c7.zip
Forgot to remove a few references to ${classifier}
-rw-r--r--assembly/pom.xml5
-rw-r--r--repl-bin/pom.xml8
2 files changed, 4 insertions, 9 deletions
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 3d645e0379..ca20ccadba 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -41,31 +41,26 @@
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-core</artifactId>
- <classifier>${classifier.name}</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-bagel</artifactId>
- <classifier>${classifier.name}</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-mllib</artifactId>
- <classifier>${classifier.name}</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-repl</artifactId>
- <classifier>${classifier.name}</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-streaming</artifactId>
- <classifier>${classifier.name}</classifier>
<version>${project.version}</version>
</dependency>
</dependencies>
diff --git a/repl-bin/pom.xml b/repl-bin/pom.xml
index eaee8ea016..270a160120 100644
--- a/repl-bin/pom.xml
+++ b/repl-bin/pom.xml
@@ -32,8 +32,8 @@
<url>http://spark-project.org/</url>
<properties>
- <deb.pkg.name>spark-${classifier}</deb.pkg.name>
- <deb.install.path>/usr/share/spark-${classifier}</deb.install.path>
+ <deb.pkg.name>spark</deb.pkg.name>
+ <deb.install.path>/usr/share/spark</deb.install.path>
<deb.user>root</deb.user>
</properties>
@@ -75,7 +75,7 @@
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
- <outputFile>${project.build.directory}/${project.artifactId}-${project.version}-shaded-${classifier}.jar</outputFile>
+ <outputFile>${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar</outputFile>
<artifactSet>
<includes>
<include>*:*</include>
@@ -207,7 +207,7 @@
<compression>gzip</compression>
<dataSet>
<data>
- <src>${project.build.directory}/${project.artifactId}-${project.version}-shaded-${classifier}.jar</src>
+ <src>${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar</src>
<type>file</type>
<mapper>
<type>perm</type>