Skip to content

Instantly share code, notes, and snippets.

@toori67
Last active July 29, 2018 12:56
Show Gist options
  • Save toori67/db7b7de7db8d47393c171dce9c79e219 to your computer and use it in GitHub Desktop.
Save toori67/db7b7de7db8d47393c171dce9c79e219 to your computer and use it in GitHub Desktop.
build.gradle with jacoco
...
apply plugin: 'kotlin'
apply plugin: "jacoco"
...
jacocoTestReport {
group = "Reporting"
reports {
html.enabled = true
xml.enabled = true
csv.enabled = true
}
executionData(test)
}
test.finalizedBy jacocoTestReport
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment