#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.
This commit is contained in:
Mark Paluch
2016-10-31 17:16:18 +00:00
committed by Oliver Gierke
parent 20879e7fa3
commit b68a4459bf

View File

@@ -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"