Thank You, following Thomas suggestions, my gwt-client maven module, has packaging of type JAR.
I use gwt-maven-plugin to compile my Java Sources, and create resulting artifacts [1] I then use maven-assembly-plugin to ZIP these generated artifacts in a ZIP archive, so that I can use it as a WAR overlay in my WebApp maven module. here is the problem Maven packaging can be JAR, WAR, POM, EAR, but not ZIP. my gwt-client maven module, has packaging JAR, but in addition to a JAR artifact also creates a ZIP assembly. JAR artifact is useless because it has compiled Java classes, which are of no use, we want GwtCompiled artifacts, which are in the ZIP assembly. WebApp module has dependency on gwt-client module (jar), but it doesn't know about ZIP assembly. it sees gwt-client module as an artifact of packaging JAR. do you know how I can use this ZIP assembly as a WAR overlay in my webapp module ? I have included maven documentation regarding ZIP Overlay here [2] (please scroll to the bottom of the page) I am having difficulty applying maven documentation [2], to the case I described here. I really appreciate any suggestion on this. Thank You [1] http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#DevGuideJavaToJavaScriptCompiler [2] http://maven.apache.org/plugins/maven-war-plugin/overlays.html -- 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.
