> > Maybe it's a GPE issue after all (I never tried IntelliJ IDEA for webapps; > I tend to prefer embedded servers these days, rather than wars deployed > into servlet containers). >
You have the same issue in IntelliJ. IntelliJ can create an example GWT project that will have src + war folder and gwt-user on class path. However inside that war folder there is no WEB-INF/lib folder generated. Because that folder does not exist by default it is maybe even more likely that a newbie directly adds a library to the project/module instead of creating WEB-INF/lib and manually put the lib folder on class path. However if you want to "export" that project to a war file within IntelliJ you would define a Java web application artifact and while doing so, IntelliJ creates red error messages (along with a single click "fix" button) which say which libraries are required by the project but are missing in the artifact. So you get the sense that your artifact will not work if you ignore and don't fix all these error messages. If you want to deploy to AppEngine from within IntelliJ you need to add the AppEngine facet and this will again need an artifact. -- J. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
