mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-08-28 02:04:46 -04:00
Add coveralls support
This commit is contained in:
@ -1,6 +1,17 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'kotlin'
|
||||
apply plugin: 'jacoco'
|
||||
apply plugin: 'com.github.kt3k.coveralls'
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:1.0.2'
|
||||
}
|
||||
}
|
||||
|
||||
def androidModule = project(':app')
|
||||
def firstVariant = androidModule.android.applicationVariants.toList().first()
|
||||
@ -39,8 +50,6 @@ jacocoTestReport {
|
||||
}
|
||||
|
||||
// Back to your regularly scheduled Jacoco
|
||||
dependsOn test
|
||||
|
||||
reports {
|
||||
xml.enabled true
|
||||
csv.enabled false
|
||||
|
Reference in New Issue
Block a user