Skip to content

Instantly share code, notes, and snippets.

@stevendick
stevendick / copy-jacoco-data.groovy
Created February 12, 2012 17:16
Gradle Multi-Project & JaCoCo
subprojects {
apply plugin: 'java'
configurations {
codeCoverage
}
dependencies {
codeCoverage files("${rootProject.projectDir.path}/lib/jacocoagent.jar")
}