extendsFrom

abstract fun extendsFrom(superConfigs: Array<Configuration>): Configuration

Adds the given configurations to the set of configuration which this configuration extends from.

Configurations are only allowed to extend from other configurations in the same project.

Return

this configuration

Parameters

superConfigs

The super configurations.


abstract fun extendsFrom(superConfigs: Array<Provider<out Configuration>>): Configuration

Adds the given configurations to the set of configuration which this configuration extends from.

Configurations are only allowed to extend from other configurations in the same project.

Return

this configuration

Since

9.4.0

Parameters

superConfigs

The super configurations.