I've had some luck with adding multiple module-definitions in my build
file.
Instead of just x.dt or x.gwtlogin, put both {in ant}
<target name="hosted" depends="javac" description="Run hosted
mode">
<java failonerror="true" fork="true"
classname="com.google.gwt.dev.HostedMode">
<classpath>
<pathelement location="src"/>
<path refid="project.class.path"/>
</classpath>
<jvmarg value="-Xmx768M"/>
<arg value="-style"/>
<arg value="PRETTY"/>
<arg value="aiyx.x51.xInk"/>
<arg value="aiyx.X"/>
<arg value="x.dt"/>
<arg value="x.gwtlogin"/>
</java>
</target>
This tells HostedMode to create all the specified modules, and have
them present in the active classpath. It might bloat your compile
time a little, but it should help resolve classNotFounds....
Of course, I'm basically ignorant of your server setup, but this is
how I use HostedMode to debug multiple projects that contain each
other in iframes....
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---