diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-11 17:05:25 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-11 17:05:25 +0100 |
commit | c885d23b868fe6d038c2e4a557f826e878316fcb (patch) | |
tree | 546241dab844671db8e21324fc09e92a44ac7a80 | |
parent | 742d043eaaf6fd907e8402eaea8ac675309cb016 (diff) | |
download | sonarqube-c885d23b868fe6d038c2e4a557f826e878316fcb.tar.gz sonarqube-c885d23b868fe6d038c2e4a557f826e878316fcb.zip |
Fix quick-build.sh
-rwxr-xr-x | quick-build.sh | 2 | ||||
-rwxr-xr-x | travis.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quick-build.sh b/quick-build.sh index d75343f5c28..8ff49597121 100755 --- a/quick-build.sh +++ b/quick-build.sh @@ -39,4 +39,4 @@ echo '' echo '' ./stop.sh -mvn install -B -e -V -DskipTests=true -Dsource.skip=true -Denforcer.skip=true $* +mvn clean install -B -e -V -DskipTests=true -Dsource.skip=true -Denforcer.skip=true -Pdev $* diff --git a/travis.sh b/travis.sh index 1ed83c0875f..ebd8703a4be 100755 --- a/travis.sh +++ b/travis.sh @@ -66,7 +66,7 @@ WEB) IT) start_xvfb - ./quick-build.sh + mvn install -DskipTests=true -Dsource.skip=true -Denforcer.skip=true -B -e -V ./run-integration-tests.sh "$IT_CATEGORY" "" -Dmaven.test.redirectTestOutputToFile=false ;; |