DependencyModifier

A DependencyModifier defines how to modify a dependency inside a custom dependencies block to select a different variant.

Inheritors

Functions

Link copied to clipboard
A dependency factory is used to convert supported dependency notations into org.gradle.api.artifacts.Dependency instances.
Link copied to clipboard
operator fun <D : ModuleDependency> DependencyModifier.invoke(dependency: D): D

Modifies a dependency to select the variant of the given module.

Link copied to clipboard
abstract fun <D : ModuleDependency?> modify(dependency: D): D
Takes a given ModuleDependency and modifies the dependency to select the variant of the given module.
open fun modify(dependencyNotation: CharSequence): ExternalModuleDependency
Create an ExternalModuleDependency from the given notation and modifies it to select the variant of the given module as described in modify.
open fun <D : ModuleDependency?> modify(providerToDependency: Provider<D>): Provider<D>
Takes a given Provider to a ExternalModuleDependency and modifies the dependency to select the variant of the given module as described in modify.
Takes a given Provider to a MinimalExternalModuleDependency and modifies the dependency to select the variant of the given module as described in modify.