You should try the new gwt-maven-plugin, it's not your solution, but it's a good idea ;). And you should known that the war is a zip, so actually your war just contains the META-INF and the GWT output folder. Take a look to this project for example (https://github.com/ibaca/rxcanvas-gwt), after a 'mvn package' you can see that the 'unzip target/*.war' creates 2 folders, the META-INF (that maybe can be descarted, but I'm don't know how to do it right now) and the rxcanvas that contains the whole web.
On Saturday, August 20, 2016 at 7:16:25 PM UTC+2, Juan Pablo Gardella wrote: > > Maybe you can achieve that by using maven-assembly-plugin > > El sáb., ago. 20, 2016 13:22, Mickael BARON <[email protected] > <javascript:>> escribió: > >> Hi, >> >> With the GWT Maven plugin ( >> https://gwt-maven-plugin.github.io/gwt-maven-plugin/), i can package my >> GWT application into a war file. But, if my GWT application contains only >> client layer (no server aspect), is there a solution to package to a >> classical web application (for example a zip file) ? In other words, no >> web.xml, no META-INF... only the generated GWT application files. I plan to >> use a Maven assembly to package my GWT application ? >> >> Any idea ? >> >> Mickael >> >> -- >> You received this message because you are subscribed to the Google Groups >> "GWT Users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To post to this group, send email to [email protected] >> <javascript:>. >> Visit this group at https://groups.google.com/group/google-web-toolkit. >> For more options, visit https://groups.google.com/d/optout. >> > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
