Ant修改不起作用

时间:2013-12-23 21:03:18

标签: ant

我编写了使用<modified>

生成cache.properties文件的代码

这是我的代码:

<?xml version="1.0" encoding="UTF-8"?>
<project name="Analysis" basedir="." default="use">
  <target name="master1">
    <echo message="executing master"/>
    <fileset id="src.files1" dir="D:\CMS\webclient\components\CMS">
      <include name="**/*.uim"/>
      <include name="**/*.properties"/>
      <include name="**/*.vim"/>
      <modified update="true"/>
      <!--    <param name="update" value="true" />-->
      <!--</modified>-->
    </fileset>
    <echo message="task completed"/>
  </target>
</project>

代码工作正常,但我的要求发生了变化,然后我切换了属性,将cache.properties更新为false,之后不更新或生成新的cache.properties

我已经检查过一篇早先的帖子,该帖子还指出这是一个在ant 1.8中修复的bug但是它在ant 1.8中无效

需要帮助

0 个答案:

没有答案