Kotlin / kotlinx-kover

Apache License 2.0
1.25k stars 46 forks source link

Extended org.gradle.api.Task in KoverReport #564

Closed shanshin closed 2 months ago

shanshin commented 2 months ago

To use pattern

tasks.withType<KoverReport>().configureEach {
    dependsOn("otherTask")
}

it is necessary that all interfaces for Kover tasks inherit the org.gradle.api.Task interface

Resolves #338