api / org.gradle.api.tasks.util / PatternFilterable / include

include

abstract fun include(vararg includes: String): PatternFilterable

Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns to be processed.

Parameters

includes - a vararg list of include patterns

Return
this

See Also
PatternFilterable

abstract fun include(includes: MutableIterable<String>): PatternFilterable

Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns to be processed.

Parameters

includes - a Iterable providing more include patterns

Return
this

See Also
PatternFilterable

abstract fun include(includeSpec: Spec<FileTreeElement>): PatternFilterable

Adds an include spec. This method may be called multiple times to append new specs. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns or specs to be included.

Parameters

includeSpec - the spec to add

Return
this

See Also
PatternFilterable

abstract fun include(includeSpec: Closure<Any>): PatternFilterable

Adds an include spec. This method may be called multiple times to append new specs. The given closure is passed a org.gradle.api.file.FileTreeElement as its parameter. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns or specs to be included.

Parameters

includeSpec - the spec to add

Return
this

See Also
PatternFilterable