diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-05-06 09:14:16 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-05-06 09:32:42 +0200 |
commit | 29611c664ced4bae8a71bef5ad616d26ccab4c02 (patch) | |
tree | 40305dbbbf59df6bd7dbca3a99978c7bd6414393 | |
parent | 8a35689e3cf1d84d3b321be33bc12607711d1ee6 (diff) | |
download | sonarqube-29611c664ced4bae8a71bef5ad616d26ccab4c02.tar.gz sonarqube-29611c664ced4bae8a71bef5ad616d26ccab4c02.zip |
Remove goal "clean" from quick-build.sh and build.sh
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | quick-build.bat | 2 | ||||
-rwxr-xr-x | quick-build.sh | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,3 +1,3 @@ #!/bin/sh -mvn clean install $* +mvn install $* diff --git a/quick-build.bat b/quick-build.bat index 8cbe98f2a02..477e3b5edd7 100644 --- a/quick-build.bat +++ b/quick-build.bat @@ -1,2 +1,2 @@ set MAVEN_OPTS=-Xmx256m -mvn clean install -Dtest=false -DfailIfNoTests=false %* +mvn install -Dtest=false -DfailIfNoTests=false %* diff --git a/quick-build.sh b/quick-build.sh index 99ce9771d2f..9e6cdf3ba85 100755 --- a/quick-build.sh +++ b/quick-build.sh @@ -38,4 +38,4 @@ echo '' echo '' echo '' -mvn clean install -Dtest=false -DfailIfNoTests=false $* +mvn install -Dtest=false -DfailIfNoTests=false $* |