Hi There, Im facing a weired situation during gwt module compilation. i have two modules 1. com.example.view.Home and another one in com.example.view.user.UserManager. when i try to compile the "com.example.view.user.UserManager" module using the following plugin def
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>1.2-SNAPSHOT</version> <configuration> <module>com.tloggin.user.UserManager</module> <force>true</force> </configuration> <executions> <execution> <goals> <goal>compile</goal> <!-- <goal>generateAsync</goal> --> </goals> </execution> </executions> </plugin> im getting the result as, module upto date [INFO] establishing classpath list (scope = compile) [INFO] com.example.user.UserManager is up to date. GWT compilation skipped [INFO] [resources:testResources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:testCompile] [INFO] Nothing to compile - all classes are up to date Could any one tell me what went wrong here please. you help is very much appreciated. Thank you, bala.
