The use case is baselineing an osgi bundle.
I would like to retrieve from configured repositories the specified release (or the latest release) of a specified artifact (the one currently just built) such that I can use the jar file in a baseline operation (which requires the previous version and the new version).
Is there any gradle API that can be used for this?
You can access a project's dependencies like this:
configurations.compile.allDependencies
from there you can iterate theDependencySet
and do what you need to do.Note: You may need to do this in an
afterEvaluate
closure because dependencies are not configured until after. So something like this: