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 ;)
 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/trunkhttp://code.google.com/p/acris/wiki/HowTo

 Peter

 On 23. Júl, 20:06 h., cokol eplisc...@googlemail.com wrote:

  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 subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 23. Júl, 20:06 h., cokol eplisc...@googlemail.com wrote:
 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 subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 subhrajyo...@gmail.com
 wrote:

 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
 http://mojo.codehaus.org/gwt-maven-plugin/user-guide/multiproject.html ,,
 this has another approach for multi module builds.

 Thanks,
 Subhro.

 On Thu, Feb 18, 2010 at 5:39 AM, Ashish Khivesara 
 ashish.khives...@gmail.com wrote:

 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
 that as a library in the other project, it seems like it is referenced fine
 (since there are no compile errors). But there are runtime errors. It is not
 able to import the library class.

 Is there a systematic procedure I could follow to create GWT libraries?

 Thanks
 Ashish

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 that
as a library in the other project, it seems like it is referenced fine
(since there are no compile errors). But there are runtime errors. It is not
able to import the library class.

Is there a systematic procedure I could follow to create GWT libraries?

Thanks
Ashish

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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
http://mojo.codehaus.org/gwt-maven-plugin/user-guide/multiproject.html ,,
this has another approach for multi module builds.

Thanks,
Subhro.

On Thu, Feb 18, 2010 at 5:39 AM, Ashish Khivesara 
ashish.khives...@gmail.com wrote:

 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 that
 as a library in the other project, it seems like it is referenced fine
 (since there are no compile errors). But there are runtime errors. It is not
 able to import the library class.

 Is there a systematic procedure I could follow to create GWT libraries?

 Thanks
 Ashish

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.