This message was deleted.
# dependency-management
s
This message was deleted.
v
A build
--scan
will show, and also the
buildEnvironment
task should give insights.
j
Yay, this was exactly what I was looking for. Is there then a way to control which version of a dependency a particular plugin uses via resolutionStrategy? Something like:
Copy code
resolutionStrategy {
        eachPlugin {
            if (requested.id.namespace == "com.google.cloud.artifactregistry") {
                // ??
            }
        }
    }
v
No, that is just for resolving plugin ids to plugin artifacts when a plugin did not properly publish the marker artifact
You probably would need to do it in the "usual" way, just in the respective
buildscript { ... }
block
j
Ahh. Ok, got it.
Thanks for the help. 👍
👌 1