fun overrideProperties(name: String, include: String, properties: Closure<Properties>): Unit
Adds an 'OverrideProperties' filter to all installation tasks. The configuration is based on formatted properties.
name - the name of the filter configuration.
include - file filter for included files in ANT file filter style.
properties - Closure for the configuration of properties.
fun overrideProperties(name: String, includes: Set<String>, properties: Closure<Properties>): Unit
Adds an 'OverrideProperties' filter to all installation tasks. The configuration is based on formatted properties.
name - the name of the filter configuration.
includes - set of file filters for included files in ANT file filter style.
properties - Closure for the configuration of properties.
fun overrideProperties(name: String, include: String, properties: Action<in Properties>): Unit
Adds an 'OverrideProperties' filter to all installation tasks. The configuration is based on formatted properties.
name - the name of the filter configuration.
include - file filter for included files in ANT file filter style.
properties - action for the configuration of properties.
fun overrideProperties(name: String, includes: Set<String>, properties: Action<in Properties>): Unit
Adds an 'OverrideProperties' filter to all installation tasks. The configuration is based on formatted properties.
name - the name of the filter configuration.
includes - set of file filters for included files in ANT file filter style.
properties - action for the configuration of properties.
fun overrideProperties(name: String, pattern: PatternFilterable, properties: Closure<Properties>): Unitfun overrideProperties(name: String, pattern: PatternFilterable, properties: Action<in Properties>): Unit
Adds an 'OverrideProperties' filter to all installation tasks. The configuration is based on formatted properties.
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.