gwt プロジェクトに 2 つのモジュールがあり、このように構成されているとしましょう
src
- main
- java
module1.gwt.xml
module2.gwt.xml
- client
- module1
- stuff
- module2
- stuff
および各モジュールのxmlファイルで
<module rename-to='module1'>
... their own entry point and stuff..
</module>
<module rename-to='module2'>
... their own entry point and stuff..
</module>
ということで、これをコンパイルすると、「module1.nocache.js」と「module2.nocache.js」の 2 つの nocache.js ファイルが得られます。それらのうちの2つをHTMLページに含めることで、これは完全にうまく機能します。
私の質問は次のとおりです。複数のモジュールをコンパイルして、両方のモジュールを含む単一の nocache.js ファイルを取得する方法はありますか?
ありがとう !:-D