diff options
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 422a53e4d18..5e2492d661a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,24 +4,15 @@ jdk: - oraclejdk8 script: - - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install -B -e -V -Panalysis -Dclirr=true - - if [[ $TRAVIS_PULL_REQUEST -ne 'false' ]]; then mvn sonar:sonar -B -e -V -Dsonar.host.url=http://nemo.sonarqube.org -Dsonar.analysis.mode=incremental; fi + - mvn clean verify -B -e install: true -after_success: - - if [[ $TRAVIS_PULL_REQUEST -ne 'false' ]]; then wget https://www.googledrive.com/host/0B-fS5IyruhUSZEFEQ2doVllzVkU -O sq-github.jar; fi - - if [[ $TRAVIS_PULL_REQUEST -ne 'false' ]]; then java -jar sq-github.jar SonarSource/sonarqube target/sonar/sonar-report.json "${TRAVIS_PULL_REQUEST}"; fi - sudo: false cache: directories: - '$HOME/.m2/repository' - - '$HOME/.sonar/cache' - -before_cache: - - find ~/.m2 -name *SNAPSHOT -type d | xargs rm -rf notifications: email: false |