我的 xml 不起作用:
当我在命令行中运行 ant compile -Dmodules=a,b,c
我的构建文件需要计算模块参数中有多少个模块,使用for循环一一编译
<target name="count_modules">
<resourcecount property="count">
<tokens>
<concat>
<filterchain>
<tokenfilter>
<stringtokenizer delims=","/>
</tokenfilter>
</filterchain>
<propertyresource name="modules" />
</concat>
</tokens>
</resourcecount>
<echo message="count is ${count}" />
</target>
count 将始终返回 1
[echo] 计数为 1