Skip to content

Commit ca70ab2

Browse files
prabeeshsrowen
authored andcommitted
[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 apache#13554 from prabeesh/master.
1 parent f958c1c commit ca70ab2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,13 @@ $ find .
289289
# Package a jar containing your application
290290
$ sbt package
291291
...
292-
[info] Packaging {..}/{..}/target/scala-2.10/simple-project_2.10-1.0.jar
292+
[info] Packaging {..}/{..}/target/scala-{{site.SCALA_BINARY_VERSION}}/simple-project_{{site.SCALA_BINARY_VERSION}}-1.0.jar
293293

294294
# Use spark-submit to run your application
295295
$ YOUR_SPARK_HOME/bin/spark-submit \
296296
--class "SimpleApp" \
297297
--master local[4] \
298-
target/scala-2.10/simple-project_2.10-1.0.jar
298+
target/scala-{{site.SCALA_BINARY_VERSION}}/simple-project_{{site.SCALA_BINARY_VERSION}}-1.0.jar
299299
...
300300
Lines with a: 46, Lines with b: 23
301301
{% endhighlight %}

0 commit comments

Comments
 (0)