api / org.gradle.api.distribution / DistributionContainer

DistributionContainer

@Incubating interface DistributionContainer : NamedDomainObjectContainer<Distribution>

A DistributionContainer manages a set of Distribution objects.

Inherited Functions

configure

abstract fun configure(configureClosure: Closure<Any>): NamedDomainObjectContainer<T>

Allows the container to be configured, creating missing objects as they are referenced.

TODO: example usage

create

abstract fun create(name: String): T

Creates a new item with the given name, adding it to this container.

abstract fun create(name: String, configureClosure: Closure<Any>): T

Creates a new item with the given name, adding it to this container, then configuring it with the given closure.

abstract fun create(name: String, configureAction: Action<in T>): T

Creates a new item with the given name, adding it to this container, then configuring it with the given action.

maybeCreate

abstract fun maybeCreate(name: String): T

Looks for an item with the given name, creating and adding it to this container if it does not exist.

Extension Properties

ext

val DistributionContainer.ext: ExtraPropertiesExtension

Retrieves the ext extension.

Extension Functions

ext

fun DistributionContainer.ext(configure: ExtraPropertiesExtension.() -> Unit): Unit

Configures the ext extension.