Skip to content

Instantly share code, notes, and snippets.

@iamvickyav
Created May 17, 2020 17:10
Show Gist options
  • Save iamvickyav/781ca17c21b81abc62c2113ad1787b24 to your computer and use it in GitHub Desktop.
Save iamvickyav/781ca17c21b81abc62c2113ad1787b24 to your computer and use it in GitHub Desktop.
Jacoco configuration for Gradle
apply plugin: 'jacoco'
jacoco {
toolVersion = '0.8.5'
}
test {
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn Test
reports {
html.enabled true
xml.enabled true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment