Files
swagger2markup/gradle/coverage.gradle
2016-03-14 15:00:17 +01:00

13 lines
253 B
Groovy

apply plugin: 'jacoco'
apply plugin: 'com.github.kt3k.coveralls'
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
tasks.coveralls {
dependsOn 'check'
}