Gradle Jacoco Plugin

From NovaOrdis Knowledge Base
Revision as of 01:23, 1 November 2018 by Ovidiu (talk | contribs) (Created page with "=Internal= * Jacoco =TODO= <syntaxhighlight lang='groovy'> apply plugin: "jacoco" ... jacocoTestReport { reports { xml.enabl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

TODO

apply plugin: "jacoco"

...

jacocoTestReport {
    
    reports {
        xml.enabled true
        html.enabled true
    }
}

check.dependsOn jacocoTestReport