Pulled down the latest and did 'mvn clean package install' and ran
into a few issues. Ended up having to change the Maven dependency
coordinates for gwtplatform a bit and made some minor changes to the
code to accomodate differences between gwtplatform versions 0.4 and
0.6. Hopefully, I'll get a chance to test it out tomorrow :)
Diff of the changes I made are below...
diff -r f9cd1c3b7c4a -r 1dec896cc590 gwtp-extension/pom.xml
--- a/gwtp-extension/pom.xml Tue Nov 16 22:11:55 2010 -0600
+++ b/gwtp-extension/pom.xml Wed Jan 25 23:25:59 2012 -0600
@@ -43,8 +43,13 @@
</dependency>
<dependency>
<groupId>com.gwtplatform</groupId>
- <artifactId>gwtp</artifactId>
- <version>0.4</version>
+ <artifactId>gwtp-dispatch-client</artifactId>
+ <version>0.6</version>
+ </dependency>
+ <dependency>
+ <groupId>com.gwtplatform</groupId>
+ <artifactId>gwtp-dispatch-server-guice</artifactId>
+ <version>0.6</version>
</dependency>
</dependencies>
diff -r f9cd1c3b7c4a -r 1dec896cc590 gwtp-extension/src/main/java/com/
googlecode/gwtrpccommlayer/gwtp/server/DispatchingPOJOServlet.java
--- a/gwtp-extension/src/main/java/com/googlecode/gwtrpccommlayer/gwtp/
server/DispatchingPOJOServlet.java Tue Nov 16 22:11:55 2010 -0600
+++ b/gwtp-extension/src/main/java/com/googlecode/gwtrpccommlayer/gwtp/
server/DispatchingPOJOServlet.java Wed Jan 25 23:25:59 2012 -0600
@@ -2,7 +2,7 @@
import com.google.inject.Inject;
import com.googlecode.gwtrpccommlayer.server.GwtRpcCommLayerServlet;
-import com.gwtplatform.dispatch.client.DispatchService;
+import com.gwtplatform.dispatch.shared.DispatchService;
import com.gwtplatform.dispatch.server.Dispatch;
import com.gwtplatform.dispatch.shared.Action;
import com.gwtplatform.dispatch.shared.ActionException;
diff -r f9cd1c3b7c4a -r 1dec896cc590 gwtp-extension/src/main/java/com/
googlecode/gwtrpccommlayer/gwtp/server/Module.java
--- a/gwtp-extension/src/main/java/com/googlecode/gwtrpccommlayer/gwtp/
server/Module.java Tue Nov 16 22:11:55 2010 -0600
+++ b/gwtp-extension/src/main/java/com/googlecode/gwtrpccommlayer/gwtp/
server/Module.java Wed Jan 25 23:25:59 2012 -0600
@@ -2,8 +2,6 @@
import com.google.inject.Scopes;
import com.google.inject.servlet.ServletModule;
-import com.gwtplatform.dispatch.server.Dispatch;
-import com.gwtplatform.dispatch.server.DispatchImpl;
import com.gwtplatform.dispatch.server.guice.DispatchModule;
import com.gwtplatform.dispatch.shared.ActionImpl;
diff -r f9cd1c3b7c4a -r 1dec896cc590 gwtp-extension/src/test/java/com/
googlecode/gwtrpccommlayer/gwtp/server/DispatchingPOJOServletTest.java
--- a/gwtp-extension/src/test/java/com/googlecode/gwtrpccommlayer/gwtp/
server/DispatchingPOJOServletTest.java Tue Nov 16 22:11:55 2010 -0600
+++ b/gwtp-extension/src/test/java/com/googlecode/gwtrpccommlayer/gwtp/
server/DispatchingPOJOServletTest.java Wed Jan 25 23:25:59 2012 -0600
@@ -8,7 +8,7 @@
import com.googlecode.gwtrpccommlayer.client.GwtRpcService;
import com.googlecode.gwtrpccommlayer.gwtp.test.TAction;
import com.googlecode.gwtrpccommlayer.gwtp.test.THandlerModule;
-import com.gwtplatform.dispatch.client.DispatchServiceAsync;
+import com.gwtplatform.dispatch.shared.DispatchServiceAsync;
import com.gwtplatform.dispatch.shared.ActionImpl;
import com.gwtplatform.dispatch.shared.Result;
import org.eclipse.jetty.server.Server;