Well, it's partly because of your SchemaCompiler, if indeed it has a limitation of taking only one file on the command line. Otherwise, you could select the out-of-date files with clever use of the <selector>s inside <fileset> (I think), <pathconvert> that to a <property> (somebody provided a PATCH to allow <arg filesetref="id"/>, but it's not in Ant now), and feed all these out-of-date files to the scheme compiler.
I thought maybe <dependset> could give you the <fileset> of out-of-date files, but it seems to only remove the target files (AFAIK), which is useless in your case, since you're not using a 'smart' task later. --DD -----Original Message----- From: Ron Chernich [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 9:45 PM To: Ant Users List Subject: Re: Can Ant iterate? Thanks David and Conor. <apply> with <uptodate> did the job perfectly--though it's a pity I had to invoke the jvm direct with ${java.home}/bin/java rather than just use a <java> task. Ron -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
