From: Konda Reddy <841750+kondareddyr@users.noreply.github.com> Date: Fri, 17 Nov 2017 20:17:53 +0000 (-0600) Subject: Do not compile Java tests in quick-build.sh X-Git-Tag: 7.0-RC1~312 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d7016491fb4bd7d1c19ba36499649ad6a6d6da8e;p=sonarqube.git Do not compile Java tests in quick-build.sh -DskipTests just skips the test execution: the tests are still compiled. Where as-Dmaven.test.skip will skip both compilation and execution of the tests. --- diff --git a/quick-build.sh b/quick-build.sh index b53a26a27f0..8a0ab1cb71c 100755 --- a/quick-build.sh +++ b/quick-build.sh @@ -41,4 +41,4 @@ $$$$"""$$$$$$$$$$uuu uu$$$$$$$$$"""$$$" EOF ./stop.sh -mvn clean install -B -e -V -DskipTests=true -Dmaven.source.skip=true -Pdev,skipSanityChecks $* +mvn clean install -B -e -V -Dmaven.test.skip -Dmaven.source.skip=true -Pdev,skipSanityChecks $*