diff options
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/travis.sh b/travis.sh index 70f6b1e2cec..b0e49824b35 100755 --- a/travis.sh +++ b/travis.sh @@ -134,11 +134,18 @@ BUILD) mvn org.jacoco:jacoco-maven-plugin:prepare-agent deploy \ $MAVEN_ARGS \ -Pdeploy-sonarsource,release - mvn sonar:sonar \ + if [[ "$TRAVIS_BUILD_NUMBER" == *0 ]]; then + mvn sonar:sonar \ -Dsonar.host.url=$SONAR_HOST_URL \ -Dsonar.login=$SONAR_TOKEN \ -Dsonar.projectVersion=$INITIAL_VERSION - + else + mvn sonar:sonar \ + -Dsonar.incremental=true \ + -Dsonar.host.url=$SONAR_HOST_URL \ + -Dsonar.login=$SONAR_TOKEN \ + -Dsonar.projectVersion=$INITIAL_VERSION + fi elif [[ "$TRAVIS_BRANCH" == "branch-"* ]] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo 'Build release branch' |