13 lines
253 B
Groovy
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'
|
|
} |