I'm developing a GWT application using Isomorphic's smartGWT tables. The problem is that I've got two entry points, one for the main application and one for a Chrome plugin.
The code of the plugin is very simple and don't need smartGWT however load it. The size of my plugin without smartGWT is 3kB, with smartGWT is 677KB.
If I remove the line that inherits the smartGWT library in the .gwt.xml file (< inherits name="com.smartgwt.SmartGwt" /> ) for my Chrome plugin the application doesn't compile and throws the following error:
[ERROR] Line 18: No source code is available for type com.smartgwt.client.data.DSResponse; did you forget to inherit a required module?
How I can not load the SmartGWT without the compiling error?