Skip to content
Snippets Groups Projects
Commit a6f43a97 authored by Konstantin Boudnik's avatar Konstantin Boudnik
Browse files

SPARK-842. Maven assembly is including examples libs and dependencies

parent 39c75f30
No related branches found
No related tags found
No related merge requests found
...@@ -62,43 +62,31 @@ ...@@ -62,43 +62,31 @@
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-core</artifactId> <artifactId>spark-core</artifactId>
<classifier>${classifier.name}</classifier> <classifier>${classifier.name}</classifier>
<version>0.8.0-SNAPSHOT</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> <classifier>${classifier.name}</classifier>
<version>0.8.0-SNAPSHOT</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-examples</artifactId> <artifactId>spark-mllib</artifactId>
<classifier>${classifier.name}</classifier> <classifier>${classifier.name}</classifier>
<version>0.8.0-SNAPSHOT</version> <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-examples</artifactId>
<classifier>javadoc</classifier>
<version>0.8.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.spark-project</groupId>
<artifactId>spark-examples</artifactId>
<classifier>sources</classifier>
<version>0.8.0-SNAPSHOT</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> <classifier>${classifier.name}</classifier>
<version>0.8.0-SNAPSHOT</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> <classifier>${classifier.name}</classifier>
<version>0.8.0-SNAPSHOT</version> <version>${project.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
<include>org.spark-project:*:jar</include> <include>org.spark-project:*:jar</include>
</includes> </includes>
<excludes> <excludes>
<exclude>org.spark-project:spark-dist:jar</exclude> <exclude>org.spark-project:spark-assembly:jar</exclude>
</excludes> </excludes>
</dependencySet> </dependencySet>
<dependencySet> <dependencySet>
......
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