to include external gwt library in jar:

1. library jar should have gwt.xml inside it with arbitrary name
identyfing the lib. for example
file named YourLibrary.gwt.xml with contents as below:
<module>
   <inherits name="'com.google.gwt.user.User'/">
</module>

2. gwt.xml file in project that uses it should inherit it with:
<inherits name="your.jndi.path.package.YourLibrary"/> <!-- note the
name is the same as gwt.xml in jar and package the jndi path to where
it exists -->

3. make sure your has the library jar in classpath (in eclipse set it
in porject properties or pass it to javac when compiling).

it should work ;)

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to