Hi!
I'm trying to reduce the compile time of a GWT project on jenkins. My project structure can be summarized to the following one:
- module_1: jar and GWT module
- module_2: multimodule maven project, each submodule is a jar, and each one contains a GWT module. Each GWT module inherits from module_1
- module_3: war, contains a GWT module that inherits from module_2
The problem with this structure is the moment when everything is compiled on jenkins:
- module_1 compiles
- module_2 compiles, and accordingly module_1 is compiled again
- module_3 compiles, and accordingly each submodule in module_2 is compiled, and at the same time module_1 is compiled again some more times
My goal is to avoid recompiling some of the modules so many times. I'd like to know whether the GWT modules are well structured or not, so I could focus on restructuring GWT modules or in Jenkins side.
Thanks in advance!