Thanks!!
Of course!
The gwt.xml needs be in the appropriate package, but in Java it
doesn't matter whether it's on the same folder or JAR, only that it
can be found on the classpath.
Thanks for the answer
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
-Copying the .jar files into a lib folder created into the project IRn
folder. Once the libraries are there click with the right button and
then build path -> add to build path. And then these .jar files
automatically get into Referenced libraries section.
-I've tried to the same than above point but before I've included the
PATH of boths .jar into the CLASSPATH of bashrc file.
-Also, I've tried to the same and after do this I've linked the source
code of these libraries.
What else can I try?
Do you know any tutorial or manual about this?
**************
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='es.upv.xmlutils'>
<inherits name='com.google.gwt.user.User' />
<inherits name="com.google.gwt.xml.XML" />
</module>
*****************
And Intimeclient.gwt.xml with this content:
******************
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='es.ua.jpm'>
<inherits name='com.google.gwt.user.User' />
</module>
******************
Is there any wrong sentece?. I'm renaming the modules (xxx.gwt.xml
files) because they are not into .jar package.
What's going on?
thanks!
On Jan 19, 4:59 pm, jfagh <jfa...@gmail.com> wrote:
> Juan,
> Also, you need to include both .java and .class files in your JAR. And
> the .java files must not reference any unsupported libraries (i.e.
> those that cannot be translated from java to js by GWT)
> James
He doesn't need to include the source files in the same jar. It is
perfectly
valid to build more than one file, presumably through Ant or Maven:
module.jar
module-src.jar
module-javadoc.jar
I would include module.gwt.xml in the source jar. But if he's trying
to
include third-party libraries without source code in his GWT
compilation,
he'll have problems. They should stay on the server.
Respectfully,
Eric Jablow