You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by zentol <gi...@git.apache.org> on 2018/06/01 09:45:15 UTC

[GitHub] flink pull request #6109: [FLINK-9483] 'Building Flink' doc doesn't highligh...

Github user zentol commented on a diff in the pull request:

    https://github.com/apache/flink/pull/6109#discussion_r192347684
  
    --- Diff: 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, checkstyle, and JavaDocs:
    +
    +{% highlight bash %}
    +mvn clean install -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true
    --- End diff --
    
    replace `-Dmaven.javadoc.skip=true -Dcheckstyle.skip=true` with `-Dfast` 


---