deploymentDescriptor

open fun deploymentDescriptor(@DelegatesTo(value = DeploymentDescriptor::class, strategy = Closure.DELEGATE_FIRST) configureClosure: Closure): Ear

Configures the deployment descriptor for this EAR archive.

The given closure is executed to configure the deployment descriptor. The DeploymentDescriptor is passed to the closure as its delegate.

Return

This.

Parameters

configureClosure

The closure.


open fun deploymentDescriptor(configureAction: Action<out Any>): Ear

Configures the deployment descriptor for this EAR archive.

The given action is executed to configure the deployment descriptor.

Return

This.

Parameters

configureAction

The action.