Suppress Gradle's welcome message in CI builds

Closes gh-19630
This commit is contained in:
Andy Wilkinson 2020-01-12 11:30:35 +00:00
parent 823d39d63a
commit bda3cedf10
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
SET "JAVA_HOME=C:\opt\jdk-8"
SET PATH=%PATH%;C:\Program Files\Git\usr\bin
cd git-repo
.\gradlew --no-daemon --max-workers=4 build
.\gradlew --no-daemon --max-workers=4 --quiet build

View File

@ -5,5 +5,5 @@ source $(dirname $0)/common.sh
repository=$(pwd)/distribution-repository
pushd git-repo > /dev/null
./gradlew --no-daemon --max-workers=4 -PdeploymentRepository=${repository} build publishAllPublicationsToDeploymentRepository
./gradlew --no-daemon --max-workers=4 --quiet -PdeploymentRepository=${repository} build publishAllPublicationsToDeploymentRepository
popd > /dev/null