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.
This commit is contained in:
Andy Wilkinson 2017-09-20 07:26:43 +01:00
parent d7b8dbac21
commit 7e9180f0b8
1 changed files with 1 additions and 1 deletions

View File

@ -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'
script: ./mvnw install -nsu -Dmaven.test.redirectTestOutputToFile=true -P '!integration'