You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The client and meta:compiler projects are independent and doesn't have any dependencies except kover plugin is applied to both.
Errors
Some problems were found with the configuration of task ':client:koverVerify' (type 'KoverVerifyTask').
- Gradle detected a problem with the following location: '/../meta/compiler/plugin/build/kover/bin-reports/test.ic'.
Reason: Task ':client:koverVerify' uses this output of task ':meta:compiler:plugin:test' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
Possible solutions:
1. Declare task ':meta:compiler:plugin:test' as an input of ':client:koverVerify'.
2. Declare an explicit dependency on ':meta:compiler:plugin:test' from ':client:koverVerify' using Task#dependsOn.
3. Declare an explicit dependency on ':meta:compiler:plugin:test' from ':client:koverVerify' using Task#mustRunAfter.
For more information, please refer to https://docs.gradle.org/8.4/userguide/validation_problems.html#implicit_dependency in the Gradle documentation.
- Gradle detected a problem with the following location: '.../../meta/compiler/plugin/build/generated/ksp/main/kotlin'.
Reason: Task ':client:koverVerify' uses this output of task ':meta:compiler:plugin:kspKotlin' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
Environment
Kover Gradle Plugin version: 0.7.4
Gradle version: 8.4
Kotlin project type: Kotlin/Multiplatform=
Other context important for this bug: MacOS (arm64): 13.6 Ventura
The text was updated successfully, but these errors were encountered:
Describe the bug
After upgrading to
0.7.4
from0.7.3
, gradle started throwing animplicit_dependency
dependency error forkoverVerify
tasks.I do have a multi module kmp project setup, where in apply kover plugin to all sub-projects using a pre-compiled script plugin
then in the root build script (for merged report).
The client and meta:compiler projects are independent and doesn't have any dependencies except kover plugin is applied to both.
Errors
Environment
The text was updated successfully, but these errors were encountered: