在 Ant 中,我试图完成一个简单的任务:如果修改了几个文件,则应该运行编译器。我见过很多使用 OutOfDate、UpToDate 和 Modified 的解决方案。我不想使用 OutOfDate 和 UpToDate,因为如果文件在同一天被修改,我将无法使用该任务。我可以使用修改,但无法从修饰任务调用另一个任务 - 我的编译器任务。除了这些还有其他解决方案吗?
问问题
2774 次
1 回答
8
将<uptodate>
以下内容<antcall>
与条件一起使用<target>
将为您提供所需的内容:
<project name="ant-uptodate" default="run-tests">
<tstamp>
<format property="ten.seconds.ago" offset="-10" unit="second"
pattern="MM/dd/yyyy hh:mm aa"/>
</tstamp>
<target name="uptodate-test">
<uptodate property="build.notRequired" targetfile="target-file.txt">
<srcfiles dir= "." includes="source-file.txt"/>
</uptodate>
<antcall target="do-compiler-conditionally"/>
</target>
<target name="do-compiler-conditionally" unless="build.notRequired">
<echo>Call compiler here.</echo>
</target>
<target name="source-older-than-target-test">
<touch file="source-file.txt" datetime="${ten.seconds.ago}"/>
<touch file="target-file.txt" datetime="now"/>
<antcall target="uptodate-test"/>
</target>
<target name="source-newer-than-target-test">
<touch file="target-file.txt" datetime="${ten.seconds.ago}"/>
<touch file="source-file.txt" datetime="now"/>
<antcall target="uptodate-test"/>
</target>
<target name="run-tests"
depends="source-older-than-target-test,source-newer-than-target-test"/>
</project>
于 2012-06-13T15:35:51.803 回答