Repository: spark Updated Branches: refs/heads/branch-2.0 5e9a8e715 -> b2778c8bb
[DOCUMENTATION] Fixed target JAR path ## What changes were proposed in this pull request? Mentioned Scala version in the sbt configuration file is 2.11, so the path of the target JAR should be `/target/scala-2.11/simple-project_2.11-1.0.jar` ## How was this patch tested? n/a Author: prabs <[email protected]> Author: Prabeesh K <[email protected]> Closes #13554 from prabeesh/master. (cherry picked from commit ca70ab27cc73f6ea7fce5d179ca8f13459c8ba95) Signed-off-by: Sean Owen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b2778c8b Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b2778c8b Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b2778c8b Branch: refs/heads/branch-2.0 Commit: b2778c8bbdf3b3a2e650b17346f87f2568f88295 Parents: 5e9a8e7 Author: prabs <[email protected]> Authored: Wed Jun 8 17:22:55 2016 +0100 Committer: Sean Owen <[email protected]> Committed: Wed Jun 8 17:23:03 2016 +0100 ---------------------------------------------------------------------- docs/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/b2778c8b/docs/quick-start.md ---------------------------------------------------------------------- diff --git a/docs/quick-start.md b/docs/quick-start.md index 72372a6..1b961fd 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -289,13 +289,13 @@ $ find . # Package a jar containing your application $ sbt package ... -[info] Packaging {..}/{..}/target/scala-2.10/simple-project_2.10-1.0.jar +[info] Packaging {..}/{..}/target/scala-{{site.SCALA_BINARY_VERSION}}/simple-project_{{site.SCALA_BINARY_VERSION}}-1.0.jar # Use spark-submit to run your application $ YOUR_SPARK_HOME/bin/spark-submit \ --class "SimpleApp" \ --master local[4] \ - target/scala-2.10/simple-project_2.10-1.0.jar + target/scala-{{site.SCALA_BINARY_VERSION}}/simple-project_{{site.SCALA_BINARY_VERSION}}-1.0.jar ... Lines with a: 46, Lines with b: 23 {% endhighlight %} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
