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

xmlContent

fun xmlContent(name: String, include: String, xml: Closure<XmlProvider>): Unit

Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.

Parameters

name - the name of the filter configuration.

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

xml - Closure for the configuration of the xml node.

fun xmlContent(name: String, includes: Set<String>, xml: Closure<XmlProvider>): Unit

Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.

Parameters

name - the name of the filter configuration.

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

xml - Closure for the configuration of the xml node.

fun xmlContent(name: String, include: String, xml: Action<in XmlProvider>): Unit

Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.

Parameters

name - the name of the filter configuration.

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

xml - action for the configuration of the xml node.

fun xmlContent(name: String, includes: Set<String>, xml: Action<in XmlProvider>): Unit

Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.

Parameters

name - the name of the filter configuration.

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

xml - action for the configuration of the xml node.

fun xmlContent(name: String, pattern: PatternFilterable, xml: Closure<XmlProvider>): Unit
fun xmlContent(name: String, pattern: PatternFilterable, xml: Action<in XmlProvider>): Unit

Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.

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.

xml - closure for the configuration of the xml node.