You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by kt...@apache.org on 2019/08/08 20:38:29 UTC

[fluo] branch master updated: Fix travis build by supressing download msgs (#1075)

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

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo.git


The following commit(s) were added to refs/heads/master by this push:
     new 72269a4  Fix travis build by supressing download msgs (#1075)
72269a4 is described below

commit 72269a4ed7206a7a9a597b902322873cf71e0e49
Author: Keith Turner <kt...@apache.org>
AuthorDate: Thu Aug 8 16:38:23 2019 -0400

    Fix travis build by supressing download msgs (#1075)
    
    Copied the maven options from :
    
    apache/accumulo@6b1ff048b93641f597aaba79424c906156dec42b
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index b6850d1..98b2bd5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,6 +26,6 @@ jdk:
 before_script:
   - unset _JAVA_OPTIONS
 env:
-  - BUILD_ARGS="clean verify javadoc:jar"
+  - BUILD_CMD="mvn clean verify javadoc:jar"
 script:
-  - mvn $BUILD_ARGS
+  - $BUILD_CMD -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn