The Google Web Toolkit for Grails.
Dependency :
compile ":gwt:0.9"
Summary
Incorporates GWT into Grails. In particular, GWT host pages can be
GSPs and standard Grails services can be used to handle client RPC
requests.
Installation
- Download and install the GWT SDK from here.
- Set the
GWT_HOMEenvironment variable to the directory where you extracted the GWT SDK, e.g./home/sinbad/dev/gwt-2.4.0. - Install the GWT plugin in any Grails project by running
grails install-plugin gwtor (Grails >1.2) set the plugin-dependency in theBuildConfig.groovy file, e.g.:
plugins {
…
compile " :gwt:0.6.1"
…
}