Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 22 Next »

Info

Build Environments

Libraries

Tooling

  • gwt-toolingGoogle Webtoolkit (GWT) Tooling for Eclipse
  • Cypal Studio for GWT is a set of Eclipse plugins for the Google Web Toolkit. Its free and Open Source. Its distributed under Apache License.

Build GWT From Source : 2008-05-17

  • Checkout source code
  • Setting environment variable
    • setenv GWT_TOOLS ${HOME}/src/gwt-tools
    • setevn GWT_EXTERNAL_BROWSER /usr/bin/firefox
  • Build gwt-trunk
    • cd ~/src/gwt-trunk
    • ant
  • The GWT build creates each binary distribution in the build/dist subdirectory of the source root directory
    • ls ~/src/gwt-trunk/build/dist
      • gwt-linux-0.0.0.tar.bz2, gwt-mac-0.0.0.tar.gz, gwt-windows-0.0.0.zip
  • Unpack the binary that matches your operation system
    • tar xvzf gwt-mac-0.0.0.tar.gz
    • mv gwt-mac-0.0.0 ~/local
    • cd ~local; ln -s gwt-mac-0.0.0 gwt
  • Add GWT binary root folder to execution path
    • setenv PATH ${PATH}:${HOME}/local/gwt

Creating Hello World GWT Application with Eclipse support : 2008-05-17

  • Create project folder and generate eclipse project file
    • mkdir ~/src/MyProject
    • cd ~/src/MyProject
    • projectCreator -eclipse MyProject
  • Create default application
    • cd ~/src/MyProject
    • applicationCreator -eclipse MyProject edu.ucdavis.gwt.client.MyApplication

Run Hello World GWT Application : 2008-05-17

  • Run OOTB created sample application
    • cd ~/src/MyProject
    • ./MyApplication-shell

(warning) NOTES:

  • ...
  • No labels