Skip to content

Commit

Permalink
[SPARK-14711][BUILD] Examples jar not a part of distribution.
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

Move the spark-examples.jar from being in examples/target to examples/target/scala-2.11/jars

## How was this patch tested?

Built distribution to make sure examples jar was being included in the tarball.
Ran run-example to make sure examples were run.

Author: Mark Grover <mark@apache.org>

Closes #12476 from markgrover/spark-14711.
  • Loading branch information
markgrover authored and Marcelo Vanzin committed Apr 19, 2016
1 parent d29e429 commit 2b151b6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,13 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<outputDirectory>${jars.target.dir}</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit 2b151b6

Please sign in to comment.