In Eclipse if I make a compile-time breaking change to a low level library, it propagates through the rest of my open projects very promptly. I can then go through the breaks one by one and get my code to compile again.
In IntelliJ this seems like a hassle. I must manually compile each module. For reasons I do not yet understand making the module doesn't work; it must be compiled, and as such I must compile each module individually. (Eclipse has a "Refresh" option that can be applied to multiple projects at once). Worse, I have no indication that I have an outstanding error until I actually build my project in Maven.
Is there a way to expedite this and get my old workflow back?
Also, I'm still trying to improve my navigation of problems across modules but haven't really found a good keyboard-only way to do this.