From 7e9180f0b83ffdbb03f1658054c104fee4fee467 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 20 Sep 2017 07:26:43 +0100 Subject: [PATCH] Tweak Travis configuration as Surefire is now silent in quite mode Surefire 2.20 is completely silent when running in quiet mode which causes Travis to incorrectly detect that the build has hung. This commit removes the use of quiet mode in the hope that it will strike a reasonable balance between enough log output to prevent a false positive for the build being hung while also not generating so much output that Travis cannot cope. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 735a635fb5..c24efed83f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,4 @@ cache: - $HOME/.m2 install: true before_script: travis_wait 45 ./mvnw install -q -U -DskipTests=true -Pfast -Dmaven.test.redirectTestOutputToFile=true -script: ./mvnw install -q -nsu -Dmaven.test.redirectTestOutputToFile=true -P '!integration' \ No newline at end of file +script: ./mvnw install -nsu -Dmaven.test.redirectTestOutputToFile=true -P '!integration' \ No newline at end of file