I currently have a problem with the jacoco plugin ...
# community-support
k
I currently have a problem with the jacoco plugin integrating with the Kotlin multiplatform plugin. Right now, I have this:
Copy code
val jacocoJvmTestReport by tasks.registering(JacocoReport::class) {
  sourceDirectories.from(kotlin.sourceSets.commonMain.map { it.kotlin })
  sourceDirectories.from(kotlin.sourceSets.jvmMain.map { it.kotlin })
}
However, the generated report can't seem to find the
jvmMain
sources, only the
commonMain
sources. Any idea on why that could be?