Maybe there is a documentation somewhere that I am missing but I am having a hard time linking external project modules to my gwt application. If someone can just elaborate how to link an external project like apache commons or something else to gwt, that would really help
I have been trying to integrate
fastutils from
http://fastutil.di.unimi.it/ for some time now to my gwt project. I have already updated my gwt.xml file with:
<inherits name="it.unimi.dsi.fastutil" />
I have also added a gwt.xml file to my jar since it doesn't have it. Here are the contents of my added file:
<module>
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.xml.XML"/>
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="com.google.gwt.json.JSON"/>
<inherits name="com.google.gwt.http.HTTP"/>
<inherits name="com.google.gwt.event.Event"/>
<source path='fastutil'/>
</module>
Still, when I compile, it keeps on failing with the notoriious "no source code found for ... ..."
Any helps or recommendations in this area?
Thanks,
Rex