From: Thanh Ha Date: Thu, 18 Jan 2018 19:22:07 +0000 (-0500) Subject: Use clean install for Sonar X-Git-Tag: v0.15.0~3 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F31%2F8431%2F1;hp=c1873360fa7455fdb690c6235923d7eb68e30ec6;p=releng%2Fglobal-jjb.git Use clean install for Sonar The Sonar job does not need to deploy so switch to using `mvn clean install` to build the project before running sonar scan. Change-Id: I577a57417d0c56f403e66b9fb7201bf58fef818e Signed-off-by: Thanh Ha --- diff --git a/shell/maven-sonar.sh b/shell/maven-sonar.sh index ef9bea28..17c509d5 100644 --- a/shell/maven-sonar.sh +++ b/shell/maven-sonar.sh @@ -21,11 +21,10 @@ export MAVEN_OPTS # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters. # shellcheck disable=SC2086 -$MVN clean deploy \ +$MVN clean install \ -e -Dsonar \ --global-settings "$GLOBAL_SETTINGS_FILE" \ --settings "$SETTINGS_FILE" \ - -DaltDeploymentRepository=staging::default::file:"$WORKSPACE"/m2repo \ $MAVEN_OPTIONS $MAVEN_PARAMS # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters. @@ -34,5 +33,4 @@ $MVN $SONAR_MAVEN_GOAL \ -e -Dsonar -Dsonar.host.url="$SONAR_HOST_URL" \ --global-settings "$GLOBAL_SETTINGS_FILE" \ --settings "$SETTINGS_FILE" \ - -DaltDeploymentRepository=staging::default::file:"$WORKSPACE"/m2repo \ $MAVEN_OPTIONS $MAVEN_PARAMS