Package org.gradle.api.artifacts
Interface ArtifactView.ViewConfiguration
- All Superinterfaces:
- HasAttributes,- HasConfigurableAttributes<ArtifactView.ViewConfiguration>
- Enclosing interface:
- ArtifactView
public static interface ArtifactView.ViewConfiguration
extends HasConfigurableAttributes<ArtifactView.ViewConfiguration>
Configuration for a defined artifact view.
- Since:
- 4.0
- 
Method SummaryModifier and TypeMethodDescriptioncomponentFilter(Spec<? super ComponentIdentifier> componentFilter) Specify a filter for the components that should be included in this view.booleanDetermines whether the view should be resolved in a 'lenient' fashion.lenient(boolean lenient) Specify if the view should be resolved in a 'lenient' fashion.voidsetLenient(boolean lenient) Specify if the view should be resolved in a 'lenient' fashion.When invoked, this view will disregard existing attributes of its parent configuration and re-resolve the artifacts using only the attributes in the view's attribute container.Methods inherited from interface org.gradle.api.attributes.HasAttributesgetAttributesMethods inherited from interface org.gradle.api.attributes.HasConfigurableAttributesattributes
- 
Method Details- 
componentFilterSpecify a filter for the components that should be included in this view. Only artifacts from components matching the supplied filter will be returned byArtifactView.getFiles()orArtifactView.getArtifacts(). This method cannot be called a multiple times for a view.
- 
isLenientboolean isLenient()Determines whether the view should be resolved in a 'lenient' fashion. When set totrue, this view will resolve as many artifacts and/or files as possible collecting any failures. When set tofalse, any failures will be propagated as exceptions when the view is resolved.
- 
setLenientvoid setLenient(boolean lenient) Specify if the view should be resolved in a 'lenient' fashion. When set totrue, this view will resolve as many artifacts and/or files as possible collecting any failures. When set tofalse, any failures will be propagated as exceptions when the view is resolved.
- 
lenientSpecify if the view should be resolved in a 'lenient' fashion. When set totrue, this view will resolve as many artifacts and/or files as possible collecting any failures. When set tofalse, any failures will be propagated as exceptions when the view is resolved.
- 
withVariantReselectionWhen invoked, this view will disregard existing attributes of its parent configuration and re-resolve the artifacts using only the attributes in the view's attribute container.This behavior cannot be unset on a particular view once this method is invoked. - Since:
- 7.5
 
 
-