Re: How to create a GWT Library?

2010-07-27 Thread nacho
Thanks. Yes, i was thinking about see some libs to inspire myself. The trouble is that right now i am overloaded :D I think that the next week i could start trying to do it. On 26 jul, 09:45, Peter Simun si...@seges.sk wrote: Just inspire by the existing GWT libraries. Sources are opensourced

Re: How to create a GWT Library?

2010-07-26 Thread Peter Simun
Just inspire by the existing GWT libraries. Sources are opensourced ;) Better libraries/frameworks has also documentation how to build them. Maven will simplify this a lot. One example: http://code.google.com/p/acris/source/browse/#svn/trunk http://code.google.com/p/acris/wiki/HowTo Peter On

How to create a GWT Library?

2010-07-23 Thread nacho
Hi, i'm looking some info about how to create and package my own gwt's lib. Does anyone know where can i find some tuto? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: How to create a GWT Library?

2010-07-23 Thread cokol
hi.its fairly easy to do.just google for a gwt module howto On Jul 23, 6:14 pm, nacho vela.igna...@gmail.com wrote: Hi, i'm looking some info about how to create and package my own gwt's lib. Does anyone know where can i find some tuto? -- You received this message because you are

Re: How to create custom gwt library

2010-02-19 Thread Ashish Khivesara
Thanks guys for the responses. I was able to make this work. The problem was the jar that I created had everything in the project included not just the src folder. This caused runtime errors. Thanks again for the help. Ashish On Wed, Feb 17, 2010 at 10:16 PM, Subhrajyoti Moitra

How to create custom gwt library

2010-02-17 Thread Ashish Khivesara
Hi, I have some GWT utilities that I would like to use in other GWT Apps. I am using Eclipse. How can I create this into a GWT library to for re-use? I referenced it as anther project (in eclipse) and that seemed to work. However when i export that utility project as a jar and then reference

Re: How to create custom gwt library

2010-02-17 Thread vinayak
Ashish, Probably we are trying same thing Check my question threadProbably that will help you... http://groups.google.com/group/google-web-toolkit/browse_thread/thread/58aa1f5762d3e87a# -- You received this message because you are subscribed to the Google Groups Google

Re: How to create custom gwt library

2010-02-17 Thread Subhrajyoti Moitra
i think gwt-maven plugin can help you do this. Have 2 separate projects, and the do a clean install on the first project. and then use it as a dependency in the 2nd one, like any other typical maven dependency. For specifics see