This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git
The following commit(s) were added to refs/heads/master by this push: new c89ed48 Add --no-transfer-progress to CI builds. c89ed48 is described below commit c89ed48381a103d3031c391708b92f27b9cf389e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 5 09:42:55 2020 -0400 Add --no-transfer-progress to CI builds. --- .github/workflows/maven.yml | 2 +- .travis.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 28fa9e8..858e73f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -37,4 +37,4 @@ jobs: with: java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn -V -Ddoclint=all --file pom.xml + run: mvn -V -Ddoclint=all --file pom.xml --no-transfer-progress diff --git a/.travis.yml b/.travis.yml index cbbb2f8..845e35d 100755 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ jdk: - openjdk11 script: - - mvn + - mvn -V --no-transfer-progress after_success: - - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco \ No newline at end of file + - mvn -V --no-transfer-progress clean test jacoco:report coveralls:report -Ptravis-jacoco \ No newline at end of file