一、概述
从Ant1.6起,PropertySet分组一组属性,支持PropertySet的task可以引用它。
二、属性
dynamic:每次使用集合时,是否重新评估集合,默认为true。
negate:Ant1.6.2引入,是否要否定结果,如果为true,所有未被嵌套元素选中的属性将被返回,默认为false。
支持的嵌套元素:
- propertyref 从当前project中选择集合中要包含的属性。
name:选择具有给定名称的属性。
prefix:选择名称以给定字符串开头的属性。
regex:选择名称匹配给定正则表达式的属性。
builtin:选择一组内置的属性,可选值有all(所有Ant属性)、system(系统属性)、commandline(所有调用ant时命令行指定的属性以及一些特殊的ant内部属性)。 - propertyset 可以作为多个属性集的并集。
- mapper 最多可以指定一个映射器,用于改变属性建的名称。
三、简单示例
<project>
<propertyset id="properties-starting-with-foo">
<propertyref prefix="foo"/>
</propertyset>
<propertyset id="properties-starting-with-bar">
<propertyref prefix="bar"/>
</propertyset>
<propertyset id="my-set">
<propertyset refid="properties-starting-with-foo"/>
<propertyset refid="properties-starting-with-bar"/>
</propertyset>
<propertyset id="properties-starting-with-foo">
<propertyref prefix="foo"/>
<mapper type="glob" from="foo*" to="bar*"/>
</propertyset>
</project>