Skip to content

Commit

Permalink
[hotfix] Quickstart docs respect artifactId
Browse files Browse the repository at this point in the history
This closes apache#2203
  • Loading branch information
zentol committed Jul 6, 2016
1 parent 515148f commit aea86ac
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
* mvn clean package
* in the projects root directory.
* You will find the jar in
* target/flink-quickstart-${version}.jar
* target/${artifactId}-${version}.jar
* From the CLI you can then run
* ./bin/flink run -c ${package}.BatchJob target/flink-quickstart-${version}.jar
* ./bin/flink run -c ${package}.BatchJob target/${artifactId}-${version}.jar
*
* For more information on the CLI see:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
* mvn clean package
* in the projects root directory.
* You will find the jar in
* target/flink-quickstart-${version}.jar
* target/${artifactId}-${version}.jar
* From the CLI you can then run
* ./bin/flink run -c ${package}.StreamingJob target/flink-quickstart-${version}.jar
* ./bin/flink run -c ${package}.StreamingJob target/${artifactId}-${version}.jar
*
* For more information on the CLI see:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ import org.apache.flink.api.scala._
* mvn clean package
* }}}
* in the projects root directory. You will find the jar in
* target/flink-quickstart-${version}.jar
* target/${artifactId}-${version}.jar
* From the CLI you can then run
* {{{
* ./bin/flink run -c ${package}.BatchJob target/flink-quickstart-${version}.jar
* ./bin/flink run -c ${package}.BatchJob target/${artifactId}-${version}.jar
* }}}
*
* For more information on the CLI see:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ import org.apache.flink.streaming.api.scala._
* mvn clean package
* }}}
* in the projects root directory. You will find the jar in
* target/flink-quickstart-${version}.jar
* target/${artifactId}-${version}.jar
* From the CLI you can then run
* {{{
* ./bin/flink run -c ${package}.StreamingJob target/flink-quickstart-${version}.jar
* ./bin/flink run -c ${package}.StreamingJob target/${artifactId}-${version}.jar
* }}}
*
* For more information on the CLI see:
Expand Down

0 comments on commit aea86ac

Please sign in to comment.