fun xmlContent(name: String, include: String, xml: Closure<XmlProvider>): Unit
Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.
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.
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.
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.
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>): Unitfun xmlContent(name: String, pattern: PatternFilterable, xml: Action<in XmlProvider>): Unit
Adds the 'XMLContent' filter to all installation tasks. The configuration is based on XmlProvider.
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.