On Friday, May 18, 2012 5:32:59 PM UTC+2, JoseM wrote: > > Can you expand a bit more on how to get GWT DevMode to work by launching > from within Eclipse? We are used to creating a GWT Application run > configuration in eclipse but right now I am not sure how to get to work so > that the HTML/webapp resources are available to the run configuration.
The easiest is to Run as… → Web Application. It will fail because it's missing the source code for your other projects, but it'll have created the launcher. Edit it to add your other projects' src/main/java and src/main/resources (or whatever, if you'e not using Maven) to the classpath. If you want to share the *.launch file with other devs (e.g. commit it to your VCS), then you can replace absolute file paths in the "arguments" tab with Eclipse variables. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/U0PACb476I0J. 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.
