Kelvin Chung
09/24/2024, 9:11 PMconfigurations.all {
resolutionStrategy.dependencySubstitution {
substitute(module("foo:bar")).using(module("foo:baz:1.0"))
}
}
And the error that I'm getting is something like
Could not resolve all dependencies for configuration 'compileClasspath'
Resolved 'foo:bar:1.0' which is not part of the dependency lock state
ie. the module being substituted away is at the center of it all. Any insight would be useful.