Re: Setting up Maven to automatically recompile changed dependent projects

2020-07-15 Thread Thomas Kellerer
David Gradwell schrieb am 15.07.2020 um 16:16: > Can anyone offer advice as to how to achieve my goal of Maven > automatically recompiling changed dependent projects? In the "Actions" section of the project's properties you can select the actions where you want that to happen (e.g. "Run Project"

Setting up Maven to automatically recompile changed dependent projects

2020-07-15 Thread David Gradwell
I used to use Ant projects with NetBeans extensively. If I have project A uses project B and change a line of the code in project B then when I build or debug project A, Ant automatically recompiles B first and then A. This works well with complex project structures such as A uses B which uses