Based up on the code I found in the JIRA GRADLE-300, we were able to create a
Cobertura Plugin that fits our needs.

Some sample code:

        cbInstrument {
            dependsOn 'testCompile'
            include ...
            exclude ...
        }

        cbReport {
            dependsOn 'test'
        }
        
        cbCheck {
                dependsOn 'cbReport'
                totalBranchCoverageRate = '30'
                totalLineCoverageRate = '45'
        }
http://www.nabble.com/file/p22701606/GradleCoberturaPlugin.zip
GradleCoberturaPlugin.zip 
-- 
View this message in context: 
http://www.nabble.com/Cobertura-Plugin-tp22701606p22701606.html
Sent from the gradle-user mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to