Re: Using a widget / module / entry point from another separate project

2012-03-27 Thread Joseph Lust
Archmisha, Check out the POMs in this GitHub fork of minehttps://github.com/twistedpair/GWT-Maps-V3-Api/ . - The first project builds a GWT module, and its docs src. - They are installed into your local repo - The second project inherits it in the *.gwt.xml module - Now the second

Re: Using a widget / module / entry point from another separate project

2012-03-26 Thread Steve Moyer
That's not quite how it works ... your first project should produce a JAR file that includes both the compiled classes AND the source files. You'll include this library in your second project and GWT will compile IT ALL from scratch in the second project. smoyer -- You received this message

Using a widget / module / entry point from another separate project

2012-03-15 Thread archmisha
Hi, I have 2 gwt web projects (separate maven projects). I want from one project to be able to use a widget from another. I create a separate entry point in the second project and tried importing the javascript generated by second project into the first one. But it doesnt seem to work. I am