Skip to content

Instantly share code, notes, and snippets.

@zezutom
Created October 10, 2015 18:52
Show Gist options
  • Save zezutom/453c6db042e6cacf83d9 to your computer and use it in GitHub Desktop.
Save zezutom/453c6db042e6cacf83d9 to your computer and use it in GitHub Desktop.
An example of how to use the JaCoCo plugin
apply plugin: 'java'
apply plugin: 'jacoco'
repositories {
jcenter()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.12'
testCompile 'junit:junit:4.12'
}
test.finalizedBy(project.tasks.jacocoTestReport)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment