jacoco-android-gradle-plugin icon indicating copy to clipboard operation
jacoco-android-gradle-plugin copied to clipboard

Configure report output directory

Open janheinrichmerker opened this issue 8 years ago • 0 comments

Similar to FindBugs and PMD it would be useful if you could specify the output path for the report like this:

reports {
    xml {
        enabled = true
        destination "$buildDir/reports/coverage/coverage.xml"
    }
    html {
        enabled = true
        destination "$buildDir/reports/coverage/coverage.html"
    }
}

janheinrichmerker avatar Jun 03 '17 17:06 janheinrichmerker