Skip to content

Commit

Permalink
Do not suppress Maven output on Travis builds (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
meltsufin authored Jun 4, 2019
1 parent 88ac91e commit 2b55c88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ before_install:
fi;

install:
- ./mvnw clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -q
- ./mvnw clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V

script:
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then
./mvnw verify -B -V -q;
./mvnw verify -B -V;
else
./mvnw verify -B -V -q -DskipITs;
./mvnw verify -B -V -DskipITs;
fi;

0 comments on commit 2b55c88

Please sign in to comment.