From 741ecd56fe714fe42c22518aefcfa48fa3a448c7 Mon Sep 17 00:00:00 2001 From: Jey Kottalam <jey@cs.berkeley.edu> Date: Thu, 15 Aug 2013 16:32:15 -0700 Subject: [PATCH] Forgot to remove a few references to ${classifier} --- assembly/pom.xml | 5 ----- repl-bin/pom.xml | 8 ++++---- 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> -- GitLab