我一直在尝试使用以下代码来使任务仅在文件更改但似乎不起作用时才起作用。无论是否有变化,都会调用该任务。
<target name ="widget-change" depends="configuration-for-widgets">
<fileset dir="${src-location}">
<include name="com.myApp.MainClasses.myClassOne.java"/>
<include name="com.myApp.MainClasses.myClassTwo.java"/>
<modified update="true"/>
</fileset>
<antcall target="gwt-compile"/>
</target>