add

abstract fun add(dependencyNotation: CharSequence)(source)

Add a dependency.

Since

8.6

Parameters

dependencyNotation

dependency to add

See also

Valid dependency notation for this method


abstract fun add(dependencyNotation: CharSequence, configuration: Action<in ExternalModuleDependency>)(source)

Add a dependency and configure it.

Since

8.6

Parameters

dependencyNotation

dependency to add

configuration

an action to configure the dependency

See also

Valid dependency notation for this method


abstract fun add(files: FileCollection)(source)

Add a dependency.

Since

8.6

Parameters

files

files to add as a dependency

See also


abstract fun add(files: FileCollection, configuration: Action<in FileCollectionDependency>)(source)

Add a dependency and configure it.

Since

8.6

Parameters

files

files to add as a dependency

configuration

an action to configure the dependency

See also


Add a dependency.

Since

8.6

Parameters

externalModule

external module to add as a dependency


abstract fun add(externalModule: ProviderConvertible<out MinimalExternalModuleDependency>, configuration: Action<in ExternalModuleDependency>)(source)

Add a dependency and configure it.

Since

8.6

Parameters

externalModule

external module to add as a dependency

configuration

an action to configure the dependency


abstract fun add(dependency: Dependency)(source)
abstract fun add(dependency: Provider<out Dependency>)(source)

Add a dependency.

Since

8.6

Parameters

dependency

dependency to add


abstract fun <D : Dependency?> add(dependency: D, configuration: Action<in D>)(source)
abstract fun <D : Dependency?> add(dependency: Provider<out D>, configuration: Action<in D>)(source)

Add a dependency and configure it.

Since

8.6

Parameters

dependency

dependency to add

configuration

an action to configure the dependency