This message was deleted.
# dependency-management
s
This message was deleted.
m
Thanks for the suggestion, I hadn't thought to try that, but in this case it makes no difference. The following does seem to work, though it's not pretty:
Copy code
configurations.all {
	resolutionStrategy.eachDependency { DependencyResolveDetails details ->
		if (details.requested.name == 'A-bom') {
			details.useVersion 'V2'
			details.because 'override for backport'
		}
	}
}