--- [EMAIL PROTECTED] wrote: > Is there a simple way to generate a dependency file for > inclusion into build.xml?
There's the <depend> task, but it works once the class files are all compiled (since it uses them to determine the dependencies). > I have several .java files in a com.blah.blah package (in a > directory). One of the files is an Interface that one of the > other files uses. Ant chose to compile the non-Interface > file first, so it can't get the .class file for the Interface > file because it hasn't compiled it yet :-P But won't the Java compiler go compile whatever it needs whenever it needs it? Does the Interface source file live in some subdir down from the dir specified in 'srcdir'? Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
