Ok, thanks for all the replies, I seem to have solved the problem.

Answering the suggestions I have to say: I am using command line tools
only, proj2 had a module gwt.xml and proj1 module gwt.xml was
inheriting proj2 module file so the problem was in other place.

I am not familiar with ant's build.xml. I understood the problem was
classpath related so I was trying to add proj2 source tree to the
classpath and tried reloading the hosted browser but what I forgot is
that the hosted browser doesn't parse build.xml again on a refresh, it
is build.xml which launches the hosted browser so the problem was the
changes I made to build.xml where not being reflected until I rerun
ant.

I added the following pathelement tag inside the hosted target:

  <target name="hosted" depends="javac" description="Run hosted mode">
    <java failonerror="true" fork="true"
classname="com.google.gwt.dev.HostedMode">
      <classpath>
          <pathelement path="/proj2/src/"/>


I think that was all, hope it still works and that the problem was
what I think it was.

Thanks
Manuel

--~--~---------~--~----~------------~-------~--~----~
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-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to