Hello, > > I want to rebuild the whole project and don't mind if a minor > > subproject doesn't compile, but I need all the other > classes compiled. > > You'd need to have separate <javac> tasks.
Any idea how to do that for 2500 files of sourcecode? Before using ant we had a loop like this for file in `find . -name *.java` do javac [...] $file end but that was pretty slow. Can I speed up this kind of parallel compiling with <parallel> somehow? Or any other ideas? Our whole build needs 75 minutes at the moment, that is quite long (including reconfigure, compile, creating beans, archiving etc.) ... we really need to speed that up a bit. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>