first of all thanks, Thierry!! the thing is in my company use maven as standard for continuous integration (with hudson, etc), so maven is a MUST-BE
I've been investigating to create a wireframe maven-multiproject integrating the following technologies as a proof of concept: * JAR containing common classes to server and client (ej. model) * REST server publishing services * GWT client (must be capable to run in hosted mode for easy development) * other rest clients my current state is * a jar server (jse Restlet edition), publishing with jetty the server part (ex. port 9090) * a war client (gwt Restlet edition) using maven-gwt-plugin publishing the gwt client (ex. port 9091) I had the typical "same origin policy" error, but with a bit of apache proxy-http magic pretending everything is served from port 80 everything worked OK Now the question is: could I have using maven a means of serving the SERVER and CLIENT in the same war?? (providing that for serving I need in classpath j2ee edition of restlet classes and maven-gwt-plugin NEEDS to compile with gwt edition) Of course, I want to share my progress if anyone find it useful... publishing my startup where you want Greetings!!! Hwangar ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2710915

