maven-googlewebtoolkit-plugin 1.x (gwt-maven) properties
Property name Optional? Default Description
google.webtoolkit.home No ${basedir}/../gwt-amiga-1.7.58 (make sure to change this, please) Specifies the location where the Google Web Toolkit is installed.
google.webtoolkit.extrajvmargs Yes none Specifies extra args that are passed to the GWTShell, most importantly used for Macs to specify "-XstartOnFirstThread" (required on the Mac).
google.webtoolkit.runtarget No MyModule/MyModule.html Specifies the relative URL (GWT module and Host Page) the Hosted Mode Browser should invoke when launched.
google.webtoolkit.compiletarget No MyModule Specifies the GWT module the GWTCompiler will build.
google.webtoolkit.output Yes ${maven.war.webapp.dir} Specifies the location where generated web files will be written.
google.webtoolkit.style Yes OBF Specifies the style of the GWTCompiler JavaScript output (PRETTY, DETAILED, OBF).
google.webtoolkit.tomcat Yes ${maven.build.dir}/tomcat Specifies the location where tomcat directory will be created.
google.webtoolkit.port Yes 8888 Specifies the port where the development mode server will run (default 8888).
google.webtoolkit.debugport Yes 8887 Specifies the port the external JVM debugger will listen, if using gwt:debug.
google.webtoolkit.gen Yes ${maven.war.webapp.dir} Specifies the -gen flag to the GWTShell (temporary output files location).
google.webtoolkit.loglevel Yes INFO Specifies the logging level the GWTShell console will display.
google.webtoolkit.noserver Yes false Run GWTShell with the -noserver option supplied.
google.webtoolkit.contextxml Yes ${maven.war.webapp.dir}/META-INF/context.xml Location of context.xml to be copied into GWT Tomcat. (Note that you can specify the location of web.xml using $maven.war.webxml in the POM.)
google.webtoolkit.generatorRootClasses Yes com.totsp.sample.server.ABean Generate GWT IsSerializable beans from existing model beans, this defines where the existing model beans are located.
google.webtoolkit.generatePropertyChangeSupport Yes false Automatically generate PropertyChangeSupport on generated beans.
google.webtoolkit.generateGettersAndSetters Yes false Include getters and setters, or not, on generated beans.
google.webtoolkit.generatorDestinationPackage Yes com.totsp.sample.client Destination package for generated beans.