jlahoda commented on issue #5253: URL: https://github.com/apache/netbeans/issues/5253#issuecomment-1378317168
So, I guess the problem is simpler (although harder to fix): some modules are recompiled even if nothing changes (typically due to some special tasks in their build.xml not performing the timestamp checks). `enterprise/j2ee.dd` seems to be one example - each time I run `ant` in its directory, it will re-compile and re-generate its module jar. As a consequence, all modules depending on `j2ee.dd` will see its dependency changed, and will (I think) recompile as well. So, the solution is to find such modules, fix the build scripts to do nothing if nothing changes. In principle, this is simple, in practice, it is probably fairly laborious. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
