Kelvin Chung
04/10/2024, 10:56 PMval myConfig by project.configurations.registering {
isVisible = false
isTransitive = false
isCanBeConsumed = false
isCanBeResolved = true
extendsFrom(project.configurations["testRuntimeClasspath"])
}
The issue I have is that if I add a dependency to the testRuntimeClasspath
configuration, it doesn't look like it appears in myConfig
. Is it because testRuntimeClasspath
is not consumable? I also tried adding the same dependency to testImplementation
and testRuntimeOnly
, to no avail. Any insights as to what is happening?Vampire
04/11/2024, 6:57 AM