Remove Jacoco

This commit is contained in:
2019-11-16 22:04:11 -06:00
parent ded57cd04a
commit c676a02ca8
3 changed files with 0 additions and 53 deletions

View File

@@ -2,7 +2,6 @@ apply plugin: 'idea'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'jacoco'
apply plugin: 'com.github.triplet.play'
import org.ajoberstar.grgit.Grgit
@@ -73,10 +72,6 @@ android {
outputs.upToDateWhen { false }
showStandardStreams = true
}
jacoco {
includeNoLocationClasses = true
}
}
}
@@ -150,37 +145,6 @@ kapt {
correctErrorTypes = true
}
task coverageReport(type: JacocoReport) {
def excludes = [
'**/R.class',
'**/R$*.class',
'**/BuildConfig.*',
'**/Manifest*',
'**/*Test*.*',
'**/*$Lambda$*',
'**/*$ViewBinder*',
'**/*MembersInjector*',
'**/*_Provide*',
'**/*Module_*',
'**/com/android/**/*',
'**/*Dagger*',
'**/*_Factory*'
]
def androidSrc = "${project.projectDir}/src/main/java"
def androidClasses = "${buildDir}/intermediates/classes/debug"
def jvmExecData = "${buildDir}/jacoco/testDebugUnitTest.exec"
def connectedExecData = "${buildDir}/outputs/code-coverage/connected/coverage.ec"
sourceDirectories = files(androidSrc)
classDirectories = files(fileTree(dir: androidClasses, excludes: excludes))
executionData = files(jvmExecData, connectedExecData)
jacocoClasspath = configurations['jacocoAnt']
reports {
html.enabled = true
xml.enabled = true
}
}
play {
track = 'alpha'
}