/* * Copyright 2013 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.internal.component.local.model; import org.gradle.api.artifacts.PublishArtifact; import org.gradle.api.internal.artifacts.configurations.OutgoingVariant; import org.gradle.api.internal.attributes.AttributeContainerInternal; import org.gradle.internal.component.model.Exclude; import org.gradle.internal.component.model.LocalOriginDependencyMetadata; import java.util.Set; public interface BuildableLocalComponentMetadata { /** * Adds some artifacts to this component. Artifacts are attached to the given configuration and each of its children. These are used only for publishing. */ void addArtifacts(String configuration, Iterable<? extends PublishArtifact> artifacts); /** * Adds a variant to this component, extending from the given configuration. Every configuration should include at least one variant. */ void addVariant(String configuration, OutgoingVariant variant); /** * Adds a configuration to this component. * @param hierarchy Must include name * @param attributes the attributes of the configuration. */ void addConfiguration(String name, String description, Set<String> extendsFrom, Set<String> hierarchy, boolean visible, boolean transitive, AttributeContainerInternal attributes, boolean canBeConsumed, boolean canBeResolved); /** * Adds a dependency to this component. Dependencies are attached to the configuration specified by {@link LocalOriginDependencyMetadata#getModuleConfiguration()} and each of its children. */ void addDependency(LocalOriginDependencyMetadata dependency); /** * Adds an exclude rule to this component. Exclude rules are attached to the configurations specified by {@link Exclude#getConfigurations()} and each of their children. */ void addExclude(Exclude exclude); /** * Adds some files to this component. The files are attached to the given configuration and each of its children. * * These files should be treated as dependencies of this component, however they are currently treated separately as a migration step. */ void addFiles(String configuration, LocalFileDependencyMetadata files); }