Skip to content

Commit

Permalink
minor: add maven flag to omit download progress
Browse files Browse the repository at this point in the history
  • Loading branch information
strkkk authored and pbludov committed Feb 24, 2021
1 parent ac1c673 commit bea36f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/wercker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sonarqube)
fi
if [[ -z $SONAR_TOKEN ]]; then echo "SONAR_TOKEN is not set"; sleep 5s; exit 1; fi
export MAVEN_OPTS='-Xmx2000m'
mvn -e -Pno-validations clean package sonar:sonar $SONAR_PR_VARIABLES \
mvn -e -Pno-validations --no-transfer-progress clean package sonar:sonar $SONAR_PR_VARIABLES \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login=$SONAR_TOKEN \
-Dsonar.projectKey=org.checkstyle:checkstyle \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: |
cd checkstyle
bash
mvn -e clean site -Pno-validations
mvn -e --no-transfer-progress clean site -Pno-validations
- name: Copy site to AWS S3 Bucket
run: |
Expand Down

0 comments on commit bea36f9

Please sign in to comment.