diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-03-12 14:45:15 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-03-12 14:45:15 +0100 |
commit | 2db1c604c0c73d57d450c5cd0187927bd422c91a (patch) | |
tree | dedf67c09847a3d2952301bafa032c8751104260 | |
parent | 2d284f4e3a0b4cefa0becb922d3ad939aa076db6 (diff) | |
download | sonarqube-2db1c604c0c73d57d450c5cd0187927bd422c91a.tar.gz sonarqube-2db1c604c0c73d57d450c5cd0187927bd422c91a.zip |
Skip sanity checks in quick-build scripts
-rw-r--r-- | quick-build.bat | 2 | ||||
-rwxr-xr-x | quick-build.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quick-build.bat b/quick-build.bat index d60c0688b92..4e05c6e0420 100644 --- a/quick-build.bat +++ b/quick-build.bat @@ -1,2 +1,2 @@ set MAVEN_OPTS=-Xmx256m -mvn clean install -Dtest=false -DfailIfNoTests=false -Pdev %* +mvn clean install -Dtest=false -DfailIfNoTests=false -DskipSanityChecks=true -Pdev %* diff --git a/quick-build.sh b/quick-build.sh index 151afd04bce..55863096ecc 100755 --- a/quick-build.sh +++ b/quick-build.sh @@ -12,4 +12,4 @@ echo '' echo '-------------------------------------------------' # it is recommended to use maven 3 for faster builds -mvn clean install -Dtest=false -DfailIfNoTests=false -Pdev $* +mvn clean install -Dtest=false -DfailIfNoTests=false -DskipSanityChecks=true -Pdev $* |