--- Ying Wang <[EMAIL PROTECTED]> wrote: > 1. Our build will take 10 more mins. So when I change some java file, I > want to rebuild project without recompile all the other old files. How > to make it?
You don't need to do anything -- that's its default behaviour, to only recompile source files that are out-of-date with their corresponding class files. > 2.The scope of properties: Can I override a property in same xml file? You can, but only by devious means, and doing it that way is heavily discouraged. > How about override in different xml file when using <ant>. Yes -- either include a nested <property> element in your <ant> task, or set 'inheritAll="false"' and define the property via the <property> task in the other build file. Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Yahoo! Games - play chess, backgammon, pool and more http://games.yahoo.com/ -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
