Since the GWT compiler is a compiler, it requires the source code, it should compile, as it's input. If you distribute parts of your application as a JAR, the JAR has to contain the source files, since the GWT compiler requires them. So you'll have to include all source files in the JAR, that are required by the GWT compiler to compile. Source files that should not be compiled by the GWT compiler, must not be included.
Regards Jan Ehrhardt 2010/4/7 snehil parekh <[email protected]> > Hi, > > As per to my unserstanding, when inheriting any gwt client module (in > gwt.xml), the entire source of that module should be available in the > included jar. > > My requirement is, I want to include a few set of client classes in jar, > but unable to include them until i package the entire source code into the > jar? > > Please let me know if it is possible ? > > Thanks, > Snehil Parekh. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-web-toolkit%[email protected]> > . > 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
