I'm going to develop a system that generates gwt apps. These apps share a lot of widgets, and the compile time is very important for me. I'm wondering if I could prepare a set of widgets, wrap them in a module without an entrypoint, compile them just once and reuse the compiled code in others project in which other modules inherit from it.
- ModuleA (only shared widgets)
- Module1 (the rest of the app1, inherits from ModuleA).
- Module2 (the rest of the app2, inherits from ModuleA).
can I compile Module2 without recompile ModuleA every time a new app is generated?
I also used superDevMode and all compilation optimizations, but this is become a principle issue :)
I don't care about GWT optimizations.
Thanks