@Incubating public interface ComponentSelectionRules
     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, IvyModuleDescriptor descriptor, ComponentMetadata metadata ->
                         if (selection.candidate.module == 'someModule' && descriptor.branch == 'testing') {
                             if (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")
                         }
                     }
                 }
             }
         }
     }
 | Modifier and Type | Method and Description | 
|---|---|
| ComponentSelectionRules | all(Action<? super ComponentSelection> selectionAction)Adds a simple component selection rule that will apply to all resolved components. | 
| ComponentSelectionRules | all(Closure<?> closure)Adds a component selection rule that will apply to all resolved components. | 
| ComponentSelectionRules | all(Object ruleSource)Adds a rule-source backed component selection rule that will apply to all resolved components. | 
| ComponentSelectionRules | withModule(Object id,
          Action<? super ComponentSelection> selectionAction)Adds a component selection rule that will apply to the specified module. | 
| ComponentSelectionRules | withModule(Object id,
          Closure<?> closure)Adds a component selection rule that will apply to the specified module. | 
| ComponentSelectionRules | withModule(Object id,
          Object ruleSource)Adds a rule-source backed component selection rule that will apply to the specified module. | 
ComponentSelectionRules all(Action<? super ComponentSelection> selectionAction)
ComponentSelection object as an argument.selectionAction - the Action that implements a rule to be appliedComponentSelectionRules all(Closure<?> closure)
ComponentSelection object as an argument
 as well as any other arguments specified for the closure.
 Allowable closure arguments are ComponentSelection (required),
 ComponentMetadata and/or
 IvyModuleDescriptor.closure - the Closure that implements a rule to be appliedComponentSelectionRules all(Object ruleSource)
Mutate.
 This rule method:
 ComponentSelection as the first parameter.ComponentMetadata and/or IvyModuleDescriptor.ruleSource - an instance providing a rule implementationComponentSelectionRules withModule(Object id, Action<? super ComponentSelection> selectionAction)
ComponentSelection object as an argument.id - the module to apply this rule to in "group:module" format or as a ModuleIdentifierselectionAction - the Action that implements a rule to be appliedComponentSelectionRules withModule(Object id, Closure<?> closure)
ComponentSelection object as an argument
 as well as any other arguments specified for the closure.
 Allowable closure arguments are ComponentSelection (required),
 ComponentMetadata and/or
 IvyModuleDescriptor.id - the module to apply this rule to in "group:module" format or as a ModuleIdentifierclosure - the Closure that implements a rule to be appliedComponentSelectionRules withModule(Object id, Object ruleSource)
Mutate.
 This rule method:
 ComponentSelection as the first parameter.ComponentMetadata and/or IvyModuleDescriptor.id - the module to apply this rule to in "group:module" format or as a ModuleIdentifierruleSource - an instance providing a rule implementation