X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fmaven-sonar.sh;h=17c509d5c50a749d233942dc8e20e902059c9493;hb=4d253dda82fd56f3e016fc0059e10d201e253db5;hp=525125b1eb0440de65acc79740797054085265e6;hpb=c238d5307c09b13e356bdb83379f4060f933b3a4;p=releng%2Fglobal-jjb.git diff --git a/shell/maven-sonar.sh b/shell/maven-sonar.sh index 525125b1..17c509d5 100644 --- a/shell/maven-sonar.sh +++ b/shell/maven-sonar.sh @@ -21,18 +21,16 @@ export MAVEN_OPTS # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters. # shellcheck disable=SC2086 -$MVN clean deploy \ - -Dsonar \ +$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. # shellcheck disable=SC2086 $MVN $SONAR_MAVEN_GOAL \ - -Dsonar -Dsonar.host.url="$SONAR_HOST_URL" \ + -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