我正在尝试创建一个动态支持 var 替换的 ant 构建目标。
<target name="replace_property" depends="init_ant_contrib">
<propertyregex input="${replace_inboundproperty"
property="${replace_outboundproperty}"
regex="${replace_match}"
replace="${replace_target}"
global="true"
override="true" />
</target>
所以我加载了属性文件,我基本上是这样设置变量的:
replace_inboundproperty="/target/path/targetfile"
replace_outboundproperty=blah
replace_match="/target/(.*)/targetfile"
replace_target="\1"
所以当我回响 blah 时,我得到“1”。现在,如果我真的这样做:
<target name="replace_property" depends="init_ant_contrib">
<propertyregex input="${replace_inboundproperty"
property="${replace_outboundproperty}"
regex="${replace_match}"
replace="\1"
global="true"
override="true" />
</target>
和回声等等,我会得到“路径”。
谁能告诉我我缺少什么以允许替换使用属性文件/ ant -D 中的捕获组?使用 ant-contrib 1.0b3。
谢谢!