Edwin Goei wrote: > > I believe that the dates of the problem *.class files in rt.jar are > *newer* than the corresponding source files. So I suppose a somewhat > ugly hack would be to copy/touch all the source files.
Sorry, for not thinking and sending out mail too early, please disregard the ugly hack idea. I believe the solution would be to use a command like the following (psuedocode): % javac -sourcepath src -d build/classes src/**/*.java That is, list all source files on the command line. This will force javac to compile *all* source files. Ant makes this easy. I haven't tried it yet though, since it's getting late and I have to leave the office. Let me know if this does not work. -Edwin
