Re: Merging multiple modules to one main module

2009-03-06 Thread Techer
by seeing answers to similar questions I tried this 1) I created one Master.gwt.xml in "com.sow.school" and inherited the modules as and 2) Created a Master.java entry point class (with empty onModuleLoad ()). Then compiled it as com.google.gwt.dev.GWTCompiler -out www com.sow.school.Master

Merging multiple modules to one main module

2009-03-06 Thread Techer
How to merge multiple modules to one single module, which then we can use for deployment. So instead of multiple war files you can create one war file. The complete scenario is In my project I've two modules. 1)Student 2)Teacher These modules are placed in "com.sow.school". So I've Student.gwt.

How to create a GWT Module

2009-03-03 Thread Techer
Hi All, I'm doing 2 different projects which share some functionality. So I want to separate the common functionality and develop it as a module and use that module in both the projects. So the steps are 1) Develop the module and package it as jar file 2) Place it in classpath of the required pr