component-installation-plugin / com.intershop.gradle.component.installation.filter / FilterContainer / fullContent

fullContent

fun fullContent(name: String, include: String, content: Closure<StringBuilder>): Unit

Adds the 'FullContent' filter to all installation tasks. The configuration is based on StringBuilder.

Parameters

name - the name of the filter configuration.

include - file filter for included files in ANT file filter style.

content - Closure for the configuration of the content string.

fun fullContent(name: String, includes: Set<String>, content: Closure<StringBuilder>): Unit

Adds an 'FullContent' filter to all installation tasks. The configuration is based on StringBuilder.

Parameters

name - the name of the filter configuration.

includes - set of file filters for included files in ANT file filter style.

content - Closure for the configuration of the content string.

fun fullContent(name: String, include: String, content: Action<StringBuilder>): Unit

Adds the 'FullContent' filter to all installation tasks. The configuration is based on StringBuilder.

Parameters

name - the name of the filter configuration.

include - file filter for included files in ANT file filter style.

content - action for the configuration of the content string.

fun fullContent(name: String, includes: Set<String>, content: Action<StringBuilder>): Unit

Adds the 'FullContent' filter to all installation tasks. The configuration is based on StringBuilder.

Parameters

name - the name of the filter configuration.

includes - set of file filters for included files in ANT file filter style.

content - action for the configuration of the content string.

fun fullContent(name: String, pattern: PatternFilterable, content: Closure<StringBuilder>): Unit

Adds an 'FullContent' filter to all installation tasks. The configuration is based on StringBuilder.

Parameters

name - the name of the filter configuration.

pattern - A PatternFilterable represents some file container which Ant-style include and exclude patterns or specs can be applied to.

content - closure for the configuration of the content string.

fun fullContent(name: String, pattern: PatternFilterable, content: Action<StringBuilder>): Unit

Adds the 'FullContent' filter to all installation tasks. The configuration is based on StringBuilder.

Parameters

name - the name of the filter configuration.

pattern - A PatternFilterable represents some file container which Ant-style include and exclude patterns or specs can be applied to.

content - closure for the configuration of the content string.