从不同的蚂蚁项目获得财产

时间:2013-08-14 16:45:24

标签: ant

是否可以从另一个蚂蚁项目中读取属性?

我可以用:

<ant antfile="child/build.xml" target="echoproperties">
  <property name="echoproperties.file" value="${tmp}/child.properties" />
</ant>
<property prefix="child" file="${tmp}/child.properties" />
<delete file="${tmp}/child.properties" />

child/build.xml中:

<target name="echoproperties">
  <echoproperties destfile="${echoproperties.file}" />
</target>

但我想避免创建临时文件。

1 个答案:

答案 0 :(得分:1)

我发现Ant-Contrib有antfetch任务,虽然它的功能不是那么好(没有前缀,没有属性集)。