Skip to content
Snippets Groups Projects
Commit 741ecd56 authored by Jey Kottalam's avatar Jey Kottalam
Browse files

Forgot to remove a few references to ${classifier}

parent 9dd15fe7
No related branches found
No related tags found
No related merge requests found
...@@ -41,31 +41,26 @@ ...@@ -41,31 +41,26 @@
<dependency> <dependency>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-core</artifactId> <artifactId>spark-core</artifactId>
<classifier>${classifier.name}</classifier>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-bagel</artifactId> <artifactId>spark-bagel</artifactId>
<classifier>${classifier.name}</classifier>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-mllib</artifactId> <artifactId>spark-mllib</artifactId>
<classifier>${classifier.name}</classifier>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-repl</artifactId> <artifactId>spark-repl</artifactId>
<classifier>${classifier.name}</classifier>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-streaming</artifactId> <artifactId>spark-streaming</artifactId>
<classifier>${classifier.name}</classifier>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -32,8 +32,8 @@ ...@@ -32,8 +32,8 @@
<url>http://spark-project.org/</url> <url>http://spark-project.org/</url>
<properties> <properties>
<deb.pkg.name>spark-${classifier}</deb.pkg.name> <deb.pkg.name>spark</deb.pkg.name>
<deb.install.path>/usr/share/spark-${classifier}</deb.install.path> <deb.install.path>/usr/share/spark</deb.install.path>
<deb.user>root</deb.user> <deb.user>root</deb.user>
</properties> </properties>
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<configuration> <configuration>
<shadedArtifactAttached>false</shadedArtifactAttached> <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> <artifactSet>
<includes> <includes>
<include>*:*</include> <include>*:*</include>
...@@ -207,7 +207,7 @@ ...@@ -207,7 +207,7 @@
<compression>gzip</compression> <compression>gzip</compression>
<dataSet> <dataSet>
<data> <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> <type>file</type>
<mapper> <mapper>
<type>perm</type> <type>perm</type>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment