i'm trying to get an uptodate task working. i'm pretty sure i've got the
mapping wrong. my setup is:
Web Content/behavior/*.xml
Web Content/behavior/compiled/*.xml
I need to see if any files in the first folder are newer than their matching
file in the "compiled" folder.
<target name="check.uptodate">
<property name="files.base" value="../otherProject/Web Content"/>
<uptodate property="files.uptodate">
<srcfiles dir= "${files.base}/behavior" includes="*.xml"/>
<!--
<mapper type="regexp" from="behavior/*.xml" to="behavior/compiled/*.xml"/>
-->
<mapper type="package" from="*.xml" to="${files.base
}/behavior/compiled/*.xml"/>
</uptodate>
<echo>files.uptodate:${files.uptodate}</echo>
</target>
any help would be MOST appreciated!