buildFinished

abstract fun buildFinished(closure: Closure)(source)

Deprecated

Adds a closure to be called when the build is completed. All selected tasks have been executed. A BuildResult instance is passed to the closure as a parameter.

Deprecated

This method is not supported when configuration caching is enabled.

Parameters

closure

The closure to execute.

See also


abstract fun buildFinished(action: Action<in BuildResult>)(source)

Deprecated

Adds an action to be called when the build is completed. All selected tasks have been executed.

Since

3.4

Deprecated

This method is not supported when configuration caching is enabled.

Parameters

action

The action to execute.

See also