Package org.gradle.api.artifacts
Interface ArtifactCollection
- All Superinterfaces:
- Iterable<ResolvedArtifactResult>
A collection of artifacts resolved for a configuration. The configuration is resolved on demand when
 the collection is queried.
- Since:
- 3.4
- 
Method SummaryModifier and TypeMethodDescriptionA file collection containing the files for all artifacts in this collection.Returns the resolved artifacts, performing the resolution if required.Returns any failures to resolve the artifacts for this collection.Returns the resolved artifacts as aProviderofResolvedArtifactResultinstances.Methods inherited from interface java.lang.IterableforEach, iterator, spliterator
- 
Method Details- 
getArtifactFilesFileCollection getArtifactFiles()A file collection containing the files for all artifacts in this collection. This is primarily useful to wire this artifact collection as a task input.
- 
getArtifactsSet<ResolvedArtifactResult> getArtifacts()Returns the resolved artifacts, performing the resolution if required. This will resolve the artifact metadata and download the artifact files as required.- Throws:
- ResolveException- On failure to resolve or download any artifact.
 
- 
getResolvedArtifactsProvider<Set<ResolvedArtifactResult>> getResolvedArtifacts()Returns the resolved artifacts as aProviderofResolvedArtifactResultinstances. The returnedProvideris live, and tracks the producer tasks of this artifact collection. The provider will resolve the artifact metadata and download the artifact files as required.- Since:
- 7.4
 
- 
getFailuresCollection<Throwable> getFailures()Returns any failures to resolve the artifacts for this collection.- Returns:
- A collection of exceptions, one for each failure in resolution.
- Since:
- 4.0
 
 
-