diff options
author | Konda Reddy <841750+kondareddyr@users.noreply.github.com> | 2017-11-17 14:17:53 -0600 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-11-17 21:17:53 +0100 |
commit | d7016491fb4bd7d1c19ba36499649ad6a6d6da8e (patch) | |
tree | c7ac484d203c3e5305f520f725edd063b6c5e12d /quick-build.sh | |
parent | 93893fb30f9d30f46b6557d151ab19e03168eacc (diff) | |
download | sonarqube-d7016491fb4bd7d1c19ba36499649ad6a6d6da8e.tar.gz sonarqube-d7016491fb4bd7d1c19ba36499649ad6a6d6da8e.zip |
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.
Diffstat (limited to 'quick-build.sh')
-rwxr-xr-x | quick-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 $* |