From 10ddfcaff64d2470bd493bfcb18fad56bf5082b7 Mon Sep 17 00:00:00 2001 From: Bowen Li Date: Thu, 31 May 2018 16:15:41 -0700 Subject: [PATCH] [FLINK-9483] 'Building Flink' doc doesn't highlight quick build command This closes #6109 --- docs/start/building.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/start/building.md b/docs/start/building.md index a92cfe982dd..654f00bc4db 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. -- GitLab