aboutsummaryrefslogtreecommitdiff
path: root/examples/pom.xml
diff options
context:
space:
mode:
authorMark Grover <mark@apache.org>2016-04-18 17:44:42 -0700
committerMarcelo Vanzin <vanzin@cloudera.com>2016-04-18 17:44:42 -0700
commit2b151b6b93e7ef747c625d3a2b0f0732039de3b8 (patch)
treed64eb6c4dc60d4bea61264b551383d70b41ef6b2 /examples/pom.xml
parentd29e429eeb7bea3b49cfb9227d64a609f3c11531 (diff)
downloadspark-2b151b6b93e7ef747c625d3a2b0f0732039de3b8.tar.gz
spark-2b151b6b93e7ef747c625d3a2b0f0732039de3b8.tar.bz2
spark-2b151b6b93e7ef747c625d3a2b0f0732039de3b8.zip
[SPARK-14711][BUILD] Examples jar not a part of distribution.
## 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.
Diffstat (limited to 'examples/pom.xml')
-rw-r--r--examples/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/pom.xml b/examples/pom.xml
index 4a20370f06..fcd60e3b77 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -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>