From 1d9520b3abdd890cfa8e78206d67cad1aa852518 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 3 Mar 2017 13:45:44 +0100 Subject: [PATCH] Document `fast` profile in contributing documentation Closes gh-8424 --- CONTRIBUTING.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.adoc b/CONTRIBUTING.adoc index 839925c55a2..013646044bf 100755 --- a/CONTRIBUTING.adoc +++ b/CONTRIBUTING.adoc @@ -88,12 +88,12 @@ The project can be built from the root directory using the standard maven comman NOTE: You may need to increase the amount of memory available to Maven by setting a `MAVEN_OPTS` environment variable with the value `-Xmx512m` -If you are rebuilding often, you might also want to skip the tests until you are ready -to submit a pull request: +If you are rebuilding often, you might also want to skip the tests and the execution of +checkstyle until you are ready to submit a pull request: [indent=0] ---- - $ ./mvnw clean install -DskipTests + $ ./mvnw clean install -DskipTests -Pfast ----