Repository: spark
Updated Branches:
  refs/heads/branch-2.1 947c0cd90 -> d887f7581


[SPARK-19769][DOCS] Update quickstart instructions

## What changes were proposed in this pull request?

This change addresses the renaming of the `simple.sbt` build file to
`build.sbt`. Newer versions of the sbt tool are not finding the older
named file and are looking for the `build.sbt`. The quickstart
instructions for self-contained applications is updated with this
change.

## How was this patch tested?

As this is a relatively minor change of a few words, the markdown was checked 
for syntax and spelling. Site was built with `SKIP_API=1 jekyll serve` for 
testing purposes.

Author: Michael McCune <m...@redhat.com>

Closes #17101 from elmiko/spark-19769.

(cherry picked from commit bf5987cbe6c9f4a1a91d912ed3a9098111632d1a)
Signed-off-by: Sean Owen <so...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/d887f758
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/d887f758
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/d887f758

Branch: refs/heads/branch-2.1
Commit: d887f758152be4d6e089066a97b1eab817d3be83
Parents: 947c0cd
Author: Michael McCune <m...@redhat.com>
Authored: Wed Mar 1 00:07:16 2017 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Mar 1 00:07:26 2017 +0100

----------------------------------------------------------------------
 docs/quick-start.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/d887f758/docs/quick-start.md
----------------------------------------------------------------------
diff --git a/docs/quick-start.md b/docs/quick-start.md
index 0836c60..478bdcf 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -260,7 +260,7 @@ object which contains information about our
 application. 
 
 Our application depends on the Spark API, so we'll also include an sbt 
configuration file, 
-`simple.sbt`, which explains that Spark is a dependency. This file also adds a 
repository that 
+`build.sbt`, which explains that Spark is a dependency. This file also adds a 
repository that 
 Spark depends on:
 
 {% highlight scala %}
@@ -273,7 +273,7 @@ scalaVersion := "{{site.SCALA_VERSION}}"
 libraryDependencies += "org.apache.spark" %% "spark-core" % 
"{{site.SPARK_VERSION}}"
 {% endhighlight %}
 
-For sbt to work correctly, we'll need to layout `SimpleApp.scala` and 
`simple.sbt`
+For sbt to work correctly, we'll need to layout `SimpleApp.scala` and 
`build.sbt`
 according to the typical directory structure. Once that is in place, we can 
create a JAR package
 containing the application's code, then use the `spark-submit` script to run 
our program.
 
@@ -281,7 +281,7 @@ containing the application's code, then use the 
`spark-submit` script to run our
 # Your directory layout should look like this
 $ find .
 .
-./simple.sbt
+./build.sbt
 ./src
 ./src/main
 ./src/main/scala


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to