api / org.gradle.api.reporting / ConfigurableReport / setDestination

setDestination

abstract fun setDestination(file: Any): Unit

Sets the destination for the report. The file parameter is evaluated as per org.gradle.api.Project#file(Object).

Parameters

file - The destination for the report.

See Also
#getDestination()

abstract fun setDestination(file: File): Unit

Sets the destination for the report.

Parameters

file - The destination for the report.

See Also
#getDestination()

Since
4.0

abstract fun setDestination(provider: Provider<File>): Unit

Sets the destination for the report.

Parameters

provider - The provider of the destination for the report.

See Also
#getDestination()

Since
4.0