ATS-656: Execute Maven commands in non-interactive mode

This commit is contained in:
Cezar.Leahu 2020-02-07 14:09:18 +02:00 committed by CezarLeahu
parent dd932644bb
commit cd097f1988
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export VERSION=$(git describe --abbrev=0 --tags)
mkdir -p deploy_dir
# Download the WhiteSource report
mvn org.alfresco:whitesource-downloader-plugin:inventoryReport \
mvn -B org.alfresco:whitesource-downloader-plugin:inventoryReport \
-N \
"-Dorg.whitesource.product=Transform Service" \
-DsaveReportAs=deploy_dir/3rd-party.xlsx

View File

@ -11,7 +11,7 @@ export VERSION=$(git describe --abbrev=0 --tags)
mkdir -p deploy_dir
# Download the WhiteSource report
mvn org.alfresco:whitesource-downloader-plugin:inventoryReport \
mvn -B org.alfresco:whitesource-downloader-plugin:inventoryReport \
-N \
"-Dorg.whitesource.product=Transform Service" \
-DsaveReportAs=deploy_dir/3rd-party.xlsx

View File

@ -6,7 +6,7 @@ set -vex
pushd "$(dirname "${BASH_SOURCE[0]}")/../"
mvn clean install \
mvn -B clean install \
-DskipTests org.whitesource:whitesource-maven-plugin:update \
-Dorg.whitesource.failOnError=true \
-Dorg.whitesource.forceUpdate=true \