You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2020/08/05 10:17:03 UTC

[commons-io] branch release updated: Eliminate the downloading progress messages

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/release by this push:
     new 9c2a9c1  Eliminate the downloading progress messages
9c2a9c1 is described below

commit 9c2a9c183e4217c12f7a91434d894b0a3618b982
Author: Sebb <se...@apache.org>
AuthorDate: Wed Aug 5 11:16:55 2020 +0100

    Eliminate the downloading progress messages
---
 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 5fc36a7..aa24a9b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,9 +30,9 @@ matrix:
     - jdk: openjdk-ea
       env: JACOCO_SKIP=true
 
-
+# --no-transfer-progress requires Maven 3.6.1+. Otherwise use --batch-mode
 script:
-  - mvn
+  - mvn --no-transfer-progress
 
 after_success:
-  - mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura
+  - mvn --no-transfer-progress clean cobertura:cobertura coveralls:report -Ptravis-cobertura