|
|
@ -94,11 +94,10 @@ internal fun Project.configureJacoco(
|
|
|
|
?.all
|
|
|
|
?.all
|
|
|
|
?.map { directories -> directories.map { it.asFile.path } }
|
|
|
|
?.map { directories -> directories.map { it.asFile.path } }
|
|
|
|
?: provider { emptyList() }
|
|
|
|
?: provider { emptyList() }
|
|
|
|
operator fun Provider<List<String>>.plus(other: Provider<List<String>>) =
|
|
|
|
|
|
|
|
zip(other) { first, second -> first + second }
|
|
|
|
|
|
|
|
sourceDirectories.setFrom(
|
|
|
|
sourceDirectories.setFrom(
|
|
|
|
files(
|
|
|
|
files(
|
|
|
|
variant.sources.java.toFilePaths() + variant.sources.kotlin.toFilePaths()
|
|
|
|
variant.sources.java.toFilePaths(),
|
|
|
|
|
|
|
|
variant.sources.kotlin.toFilePaths()
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|