mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
45 lines
1.3 KiB
Groovy
45 lines
1.3 KiB
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'jacoco'
|
|
|
|
def androidModule = project(':app')
|
|
def firstVariant = androidModule.android.applicationVariants.toList().first()
|
|
|
|
dependencies {
|
|
compile androidModule
|
|
|
|
testCompile firstVariant.javaCompile.classpath
|
|
testCompile firstVariant.javaCompile.outputs.files
|
|
testCompile files(androidModule.plugins.findPlugin("com.android.application").getBootClasspath())
|
|
|
|
testCompile 'junit:junit:4.+'
|
|
testCompile 'org.robolectric:robolectric:+'
|
|
}
|
|
|
|
|
|
jacocoTestReport {
|
|
// Add Android sources/classes for coverage
|
|
// We can't use additionalClassDirs because of this:
|
|
// http://stackoverflow.com/a/17411305/1454178
|
|
// Additionally, for whatever reason, the exclude() call doesn't work
|
|
// inside doFirst {}, please don't move this.
|
|
def jacocoExcludes = [
|
|
"android/**/*"
|
|
]
|
|
firstVariant.javaCompile.exclude(jacocoExcludes).outputs.files
|
|
|
|
doFirst {
|
|
sourceDirectories = files(androidModule.android.sourceSets.main.java.srcDirs)
|
|
classDirectories = firstVariant.javaCompile.outputs.files
|
|
}
|
|
|
|
reports {
|
|
xml.enabled true
|
|
csv.enabled false
|
|
html.destination "${buildDir}/jacocoHtml"
|
|
}
|
|
}
|
|
|
|
// Code coverage should depend on the tests
|
|
project.jacocoTestReport.dependsOn project.test
|