I have a simple problem. I want to define a property that gets set
when some files are outdated compared to corresponding files in
another directory. I use the <update> task with a mapper:
<uptodate property="sqlj.files.uptodate">
<srcfiles dir="${source.directory}" includes="**/*.sqlj"/>
<mapper type="glob" from="*.sqlj" to="*.java"/>
</uptodate>
Unfortunately this doesn't work because I don't know how to define the
target directory.
I tried also with
<mapper type="glob" from="*.sqlj"
to="${generated.source.directory}/*.java"/>
which doesn't work, either.
Any ideas?
Thanks,
Robert
P.S: I need that as workaround for the bug in the <apply> task which
doesn't correctly handle the 'skipemptyfilesets' attribute.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>