You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by dw...@apache.org on 2018/07/15 18:40:21 UTC

[2/3] flink git commit: [FLINK-9483] 'Building Flink' doc doesn't highlight quick build command

[FLINK-9483] 'Building Flink' doc doesn't highlight quick build command

This closes #6109


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

Branch: refs/heads/master
Commit: 10ddfcaff64d2470bd493bfcb18fad56bf5082b7
Parents: bcd83c4
Author: Bowen Li <bo...@gmail.com>
Authored: Thu May 31 16:15:41 2018 -0700
Committer: Dawid Wysakowicz <dw...@apache.org>
Committed: Sun Jul 15 20:38:07 2018 +0200

----------------------------------------------------------------------
 docs/start/building.md | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/10ddfcaf/docs/start/building.md
----------------------------------------------------------------------
diff --git a/docs/start/building.md b/docs/start/building.md
index a92cfe9..654f00b 100644
--- a/docs/start/building.md
+++ b/docs/start/building.md
@@ -50,7 +50,11 @@ mvn clean install -DskipTests
 
 This instructs [Maven](http://maven.apache.org) (`mvn`) to first remove all existing builds (`clean`) and then create a new Flink binary (`install`).
 
-To speed up the build you can skip tests, checkstyle, and JavaDocs: `mvn clean install -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true`.
+To speed up the build you can skip tests, QA plugins, and JavaDocs:
+
+{% highlight bash %}
+mvn clean install -DskipTests -Dfast
+{% endhighlight %}
 
 The default build adds a Flink-specific JAR for Hadoop 2, to allow using Flink with HDFS and YARN.