org.gradle.apiArtifactView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.api.artifacts;
import org.gradle.api.artifacts.component.ComponentIdentifier;
import org.gradle.api.attributes.HasAttributes;
import org.gradle.api.attributes.HasConfigurableAttributes;
import org.gradle.api.file.FileCollection;
import org.gradle.api.specs.Spec;
/**
* A view over the artifacts resolved for this set of dependencies.
*
* By default, the view returns all files and artifacts, but this can be restricted by component identifier or by attributes.
*
* @since 3.4
*/
public interface ArtifactView extends HasAttributes {
/**
* Returns the collection of artifacts matching the requested attributes that are sourced from Components matching the specified filter.
*/
ArtifactCollection getArtifacts();
/**
* Returns the collection of artifact files matching the requested attributes that are sourced from Components matching the specified filter.
*/
FileCollection getFiles();
/**
* Configuration for a defined artifact view.
*
* @since 4.0
*/
interface ViewConfiguration extends HasConfigurableAttributes {
/**
* Specify a filter for the components that should be included in this view.
* Only artifacts from components matching the supplied filter will be returned by {@link #getFiles()} or {@link #getArtifacts()}.
*
* This method cannot be called a multiple times for a view.
*/
ViewConfiguration componentFilter(Spec super ComponentIdentifier> componentFilter);
/**
* Determines whether the view should be resolved in a 'lenient' fashion.
*
* When set to true
, this view will resolve as many artifacts and/or files as possible
* collecting any failures.
*
* When set to false
, any failures will be propagated as exceptions when the view is resolved.
*/
boolean isLenient();
/**
* Specify if the view should be resolved in a 'lenient' fashion.
*
* When set to true
, this view will resolve as many artifacts and/or files as possible
* collecting any failures.
*
* When set to false
, any failures will be propagated as exceptions when the view is resolved.
*/
void setLenient(boolean lenient);
/**
* Specify if the view should be resolved in a 'lenient' fashion.
*
* When set to true
, this view will resolve as many artifacts and/or files as possible
* collecting any failures.
*
* When set to false
, any failures will be propagated as exceptions when the view is resolved.
*/
ViewConfiguration lenient(boolean lenient);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy