Package org.gradle.api.artifacts
Interface ResolvableDependencies
- All Superinterfaces:
- ArtifactView,- HasAttributes
The primary view of the results of resolving a 
Configuration. Results can be obtained in several forms, each catering to different use cases:
 - getFiles()returns a- FileCollectionthat provides the result as a set of- Fileinstances.
- getResolutionResult()returns a- ResolutionResultthat provides information about the dependency graph without downloading artifacts.
- getArtifacts()returns an- ArtifactCollectionthat provides the files with additional metadata.
- 
         artifactView(Action)provides several APIs, which can perform lenient artifact resolution, trigger artifact transforms, or filter artifacts. Furthermore, artifact views can be used to perform variant re-selection, allowing sources and javadoc artifacts to be selected from a graph, among other things.
The dependencies are resolved once only, when the result is first requested. The result is reused and returned for subsequent calls. Once resolved, any mutation to the dependencies will result in an error.
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.gradle.api.artifacts.ArtifactViewArtifactView.ViewConfiguration
- 
Method SummaryModifier and TypeMethodDescriptionvoidafterResolve(Closure action) Adds an action to be executed after the dependencies of this set have been resolved.voidafterResolve(Action<? super ResolvableDependencies> action) Adds an action to be executed after the dependencies of this set have been resolved.artifactView(Action<? super ArtifactView.ViewConfiguration> configAction) Returns a builder that can be used to define and access a filtered view of the resolved artifacts.voidbeforeResolve(Closure action) Adds an action to be executed before the dependencies in this set are resolved.voidbeforeResolve(Action<? super ResolvableDependencies> action) Adds an action to be executed before the dependencies in this set are resolved.Returns the resolved artifacts, performing the resolution if required.Returns the set of dependencies which will be resolved.Returns the set of dependency constraints which will be considered during resolution.getFiles()Returns aFileCollectionwhich contains the resolved set of files.getName()Returns the name of this set.getPath()Returns the path of this set.Returns the resolved dependency graph, performing the resolution lazily.Methods inherited from interface org.gradle.api.attributes.HasAttributesgetAttributes
- 
Method Details- 
getNameString getName()Returns the name of this set.- Returns:
- The name. Never null.
 
- 
getPathString getPath()Returns the path of this set. This is a unique identifier for this set.- Returns:
- The path. Never null.
 
- 
getFilesFileCollection getFiles()Returns aFileCollectionwhich contains the resolved set of files. The returned value is lazy, so dependency resolution is not performed until the contents of the collection are queried.The FileCollectioncarries the task dependencies required to build the files in the result, and when used as a task input the files will be built before the task executes.- Specified by:
- getFilesin interface- ArtifactView
- Returns:
- The collection. Never null.
 
- 
getDependenciesDependencySet getDependencies()Returns the set of dependencies which will be resolved.- Returns:
- the dependencies. Never null.
 
- 
getDependencyConstraintsDependencyConstraintSet getDependencyConstraints()Returns the set of dependency constraints which will be considered during resolution.- Returns:
- the dependency constraints. Never null.
- Since:
- 4.6
 
- 
beforeResolveAdds an action to be executed before the dependencies in this set are resolved.- Parameters:
- action- The action to execute.
 
- 
beforeResolveAdds an action to be executed before the dependencies in this set are resolved.- Parameters:
- action- The action to execute.
 
- 
afterResolveAdds an action to be executed after the dependencies of this set have been resolved.- Parameters:
- action- The action to execute.
 
- 
afterResolveAdds an action to be executed after the dependencies of this set have been resolved.- Parameters:
- action- The action to execute.
 
- 
getResolutionResultResolutionResult getResolutionResult()Returns the resolved dependency graph, performing the resolution lazily.The lazy aspect depends on what is done with the returned This will resolve the dependency graph but will not resolve or download the artifacts.ResolutionResult.You should note that when resolution fails, the exceptions are included in the ResolutionResultreturned from this method. This method will not throw these exceptions.- Returns:
- the resolution result
- Since:
- 1.3
 
- 
getArtifactsReturns the resolved artifacts, performing the resolution if required. This will resolve and download the files as required.- Specified by:
- getArtifactsin interface- ArtifactView
- Throws:
- ResolveException- On failure to resolve or download any artifact.
- Since:
- 3.4
 
- 
artifactViewReturns a builder that can be used to define and access a filtered view of the resolved artifacts.- Returns:
- A view over the artifacts resolved for this set of dependencies.
- Since:
- 3.4
 
 
-