是否可以让ant帮助在目标描述中使用属性值?只使用$ {}表示法似乎不起作用
构建文件:
> new_list
[[1]]
x y
1 11
[[2]]
x y
2 12
3 13
[[3]]
x y
4 14
5 15
6 16
7 17
[[4]]
x y
8 18
9 19
10 20
终端:
<property name="test.report.dir" value="report"/>
...
<target name="test" depends="compile.main, compile.test" description="Runs unit tests. Reports are saved in ${test.report.dir}/">
...
这被建议作为Echo target description in Ant中的解决方案,但正如评论者指出的那样,它并未扩展该属性。
我在Ubuntu上使用ant 1.9.3。