From b68a4459bf566658e087ed6300aa31782bf4f0c8 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Mon, 31 Oct 2016 17:16:18 +0000 Subject: [PATCH] #215 - Reduce log output in TravisCI build. TravisCI build produces 4MB+ of log output which causes TravisCI to kill the build. Run Maven on TravisCI in batch-mode and redirect test output to file to avoid long download progress output. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 41503a71..8dfa0dc7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,4 +15,4 @@ sudo: false install: true -script: "mvn clean dependency:list test -Dsort" +script: "mvn clean dependency:list test -Dsort -Dmaven.test.redirectTestOutputToFile=true -B"