org.gradle.apiComponentSelectionRules 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 2014 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 groovy.lang.Closure;
import groovy.lang.DelegatesTo;
import org.gradle.api.Action;
import org.gradle.internal.HasInternalProtocol;
/**
* Represents a container for component selection rules. Rules can be applied as part of the
* resolutionStrategy of a configuration and individual components can be explicitly accepted
* or rejected by rule. Components that are neither accepted or rejected will be subject to
* the default version matching strategies.
*
*
* configurations {
* conf {
* resolutionStrategy {
* componentSelection {
* all { ComponentSelection selection ->
* if (selection.candidate.module == 'someModule' && selection.candidate.version == '1.1') {
* selection.reject("bad version '1.1' for 'someModule'")
* }
* }
* all { ComponentSelection selection ->
* if (selection.candidate.module == 'someModule' && selection.getDescriptor(IvyModuleDescriptor)?.branch == 'testing') {
* if (selection.metadata == null || selection.metadata.status != 'milestone') {
* selection.reject("only use milestones for someModule:testing")
* }
* }
* }
* withModule("org.sample:api") { ComponentSelection selection ->
* if (selection.candidate.version == "1.1") {
* selection.reject("known bad version")
* }
* }
* }
* }
* }
* }
*
*/
@HasInternalProtocol
public interface ComponentSelectionRules {
/**
* Adds a simple component selection rule that will apply to all resolved components.
* Each rule will receive a {@link ComponentSelection} object as an argument.
*
* @param selectionAction the Action that implements a rule to be applied
* @return this
*/
ComponentSelectionRules all(Action super ComponentSelection> selectionAction);
/**
* Adds a component selection rule that will apply to all resolved components.
*
* Each rule will receive a {@link ComponentSelection} object as an argument.
*
* @param closure the Closure that implements a rule to be applied
* @return this
*/
ComponentSelectionRules all(@DelegatesTo(ComponentSelection.class) Closure> closure);
/**
* Adds a rule-source backed component selection rule that will apply to all resolved components.
*
* The ruleSource provides the rule as exactly one rule method annotated with {@link org.gradle.model.Mutate}.
*
* This rule method:
*
* - must return void.
* - must have {@link org.gradle.api.artifacts.ComponentSelection} as its parameter.
*
*
* @param ruleSource an instance providing a rule implementation
* @return this
*/
ComponentSelectionRules all(Object ruleSource);
/**
* Adds a component selection rule that will apply to the specified module.
* Each rule will receive a {@link ComponentSelection} object as an argument.
*
* @param id the module to apply this rule to in "group:module" format or as a {@link org.gradle.api.artifacts.ModuleIdentifier}
* @param selectionAction the Action that implements a rule to be applied
* @return this
*/
ComponentSelectionRules withModule(Object id, Action super ComponentSelection> selectionAction);
/**
* Adds a component selection rule that will apply to the specified module.
*
* Each rule will receive a {@link ComponentSelection} object as an argument.
*
* @param id the module to apply this rule to in "group:module" format or as a {@link org.gradle.api.artifacts.ModuleIdentifier}
* @param closure the Closure that implements a rule to be applied
* @return this
*/
ComponentSelectionRules withModule(Object id, @DelegatesTo(ComponentSelection.class) Closure> closure);
/**
* Adds a rule-source backed component selection rule that will apply to the specified module.
*
* The ruleSource provides the rule as exactly one rule method annotated with {@link org.gradle.model.Mutate}.
*
* This rule method:
*
* - must return void.
* - must have {@link org.gradle.api.artifacts.ComponentSelection} as its parameter.
*
*
* @param id the module to apply this rule to in "group:module" format or as a {@link org.gradle.api.artifacts.ModuleIdentifier}
* @param ruleSource an instance providing a rule implementation
* @return this
*/
ComponentSelectionRules withModule(Object id, Object ruleSource);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy