fix: remove operator fun for simplicity

pull/1662/head
Alfayed Baksh 1 week ago
parent 3271208515
commit f925bfc01c

@ -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()
), ),
) )

Loading…
Cancel
Save