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
I'm depending on io.kotest:kotest-assertions-core-jvm in testImplementation but only use things from the transitive io.kotest:kotest-assertions-shared-jvm dependency. I correctly get the advice to remove the former, but the suggestion to add the latter directly tells me to add it using implementation instead of testImplementation.
Advice for project :settings
Unused dependencies which should be removed:
- testImplementation("io.kotest:kotest-assertions-core-jvm:4.6.0")
Transitively used dependencies that should be declared directly as indicated:
- implementation("io.kotest:kotest-assertions-shared-jvm:4.6.0")
To Reproduce
Steps to reproduce the behavior:
See above or sample project.
Expected behavior
The advice should be
Advice for project :settings
Unused dependencies which should be removed:
- testImplementation("io.kotest:kotest-assertions-core-jvm:4.6.0")
Transitively used dependencies that should be declared directly as indicated:
- testImplementation("io.kotest:kotest-assertions-shared-jvm:4.6.0")
The text was updated successfully, but these errors were encountered:
Build scan link
transitive-test.zip
Plugin version
0.74.0
Gradle version
7.0
(Optional) Android Gradle Plugin (AGP) version
4.2.1
Describe the bug
I'm depending on
io.kotest:kotest-assertions-core-jvm
intestImplementation
but only use things from the transitiveio.kotest:kotest-assertions-shared-jvm
dependency. I correctly get the advice to remove the former, but the suggestion to add the latter directly tells me to add it usingimplementation
instead oftestImplementation
.To Reproduce
Steps to reproduce the behavior:
See above or sample project.
Expected behavior
The advice should be
The text was updated successfully, but these errors were encountered: