open class InstallTask : Sync
This class is the main installation task of this plugin. It extends the standard Gradle Sync task, so that the last modified time of input files will be preserved.
InstallTask()
This class is the main installation task of this plugin. It extends the standard Gradle Sync task, so that the last modified time of input files will be preserved. |
var contentType: ContentType
The content type will be stored in the specified component or module. Possible values are |
open fun copy(): Unit
The task action of the task. It calls the copy function of the Copy task and adds the content type information to the target dir. |
|
open fun createCopyAction(): CopyAction
See org.gradle.api.tasks.AbstractCopyTask for more information. |
|
fun setContentType(type: String): Unit
This will set the content type property from a string value. |
fun <T : FilterReader> ContentFilterable.filter(vararg properties: Pair<String, Any?>): ContentFilterable
Adds a content filter to be used during the copy.
Multiple calls add additional filters to the filter chain.
Each filter should implement FilterReader.
Import |
open class InstallMutableTask : InstallTask
Install task for mutable artifacts. It is possible to add filters to this task over the install extension. |