filter
Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.file.CopySpec.filter.
See also
Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.tasks.AbstractCopyTask.filter.
See also
Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.file.ContentFilterable.filter.
See also
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 org.apache.tools.ant.filters.*
for access to all the standard Ant filters.
Examples:
filter<StripJavaComments>()
filter<com.mycompany.project.CustomFilter>()
filter<HeadFilter>("lines" to 25, "skip" to 2)
filter<ReplaceTokens>("tokens" to mapOf("copyright" to "2009", "version" to "2.3.1"))
Return
this
Parameters
type of the filter to add
map of filter properties
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 org.apache.tools.ant.filters.*
for access to all the standard Ant filters.
Examples:
filter<HeadFilter>(mapOf("lines" to 25, "skip" to 2))
filter<ReplaceTokens>(mapOf("tokens" to mapOf("copyright" to "2009", "version" to "2.3.1")))
Return
this
Parameters
type of the filter to add
map of filter properties
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 org.apache.tools.ant.filters.*
for access to all the standard Ant filters.
Examples:
filter(StripJavaComments::class)
filter(com.mycompany.project.CustomFilter::class)
filter(HeadFilter::class, "lines" to 25, "skip" to 2)
filter(ReplaceTokens::class, "tokens" to mapOf("copyright" to "2009", "version" to "2.3.1"))
Return
this
Parameters
type of the filter to add
map of filter properties
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 org.apache.tools.ant.filters.*
for access to all the standard Ant filters.
Examples:
filter(HeadFilter::class, mapOf("lines" to 25, "skip" to 2))
filter(ReplaceTokens::class, mapOf("tokens" to mapOf("copyright" to "2009", "version" to "2.3.1")))
Return
this
Parameters
type of the filter to add
map of filter properties
Adds a content filter to be used during the copy.