You could in theory reconfigure the project to use the old Mojo plugin instead of the new TBroyer plugin. That would likely be much more trouble than its worth though, especially if all that’s needed is the missing generateAsync goal. The most obvious alternatives are:
- Create and maintain the missing interfaces by hand
- Allow Eclipse to generate the interfaces for you, as outlined in the GWT RPC tutorial:
Right click on the error in Eclipse, select Quick Fix, and choose the “Create asynchronous RemoteService interface” option to automatically generate the asynchronous interface. - Use the AutoRPC GWT Generator project (recommended by the Mojo plugin for replacing generateAsync) to generate the interfaces for you at build time.
Leave a comment: