Let's say I have 2 module in my gwt project and it was structured like this
src
- main
- java
module1.gwt.xml
module2.gwt.xml
- client
- module1
- stuff
- module2
- stuff
and on each module xml file
<module rename-to='module1'>
... their own entry point and stuff..
</module>
<module rename-to='module2'>
... their own entry point and stuff..
</module>
So, from this, when compile, I'll get 2 nocache.js file which is "module1.nocache.js" and "module2.nocache.js". Which is perfectly works fine by including 2 of them into HTML page.
My question are follow, is there any way I can compile multiple module and get a single nocache.js file which contains both modules inside ?
Thanks ! :-D