I'm using GWT 2.4. My main EntryPoint class uses a Serializable class I've created, com.myco.clearing.common.xml.XmlNode. How do I properly include that class in my .gwt.xml module that my EntryPoint class is using? I tried including this in my .gwt.xml file ...
<inherits name='com.myco.clearing.common.xml.XmlNode'/>
but get this error when running my web application ...
[ERROR] Unable to find 'com/myco/clearing/common/xml/XmlNode.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
Any way to properly include this class without having to change its package name? - Dave