Skip to content

Commit

Permalink
Working code coverage and exclusions on Sonarcloud
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Aug 14, 2020
1 parent a7d01da commit 7cb5de3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ sonarqube {
property "sonar.host.url", "https://sonarcloud.io"
property 'sonar.sourceEncoding', 'UTF-8'
property 'sonar.language', 'java'
property 'sonar.coverage.jacoco.xmlReportPaths', "omniNotes/build/jacoco/jacoco.xml"
property 'sonar.coverage.jacoco.xmlReportPaths', "**/jacoco/jacoco.xml"
property 'sonar.exclusions', '**/src/main/assets/**/*.*'
property 'sonar.test.exclusions', '**/src/test/**/*.*,**/src/androidTest/**/*.*'
}
}

0 comments on commit 7cb5de3

Please sign in to comment.