Added code to build coverage report to .travis.yml

This commit is contained in:
Micah Silverman 2015-10-27 22:09:02 -04:00
parent 1d9fd734c9
commit 4773224c74
1 changed files with 4 additions and 0 deletions

View File

@ -6,5 +6,9 @@ jdk:
- oraclejdk7
- oraclejdk8
before_install:
- export BUILD_COVERAGE="$([ $TRAVIS_JDK_VERSION == 'openjdk7' ] && echo 'true')"
install: echo "No need to run mvn install -DskipTests then mvn install. Running mvn install."
script: mvn install
after_success:
- test -z "$BUILD_COVERAGE" || mvn clean cobertura:cobertura coveralls:report