I made a script to setup the source based on Making GWT Better directions:
http://code.google.com/p/gwt-examples/wiki/GWTAutoSourceSetup - find source and info here... #!/bin/sh # created by Brandon Donnelson # # Help with the download and setup of GWT source # # http://code.google.com/webtoolkit/makinggwtbetter.html # http://code.google.com/p/google-web-toolkit/source/browse/trunk/eclipse/README.txt # echo "starting GWT source download and setup..." # install svn? hash svn 2>&- || { echo >&2 "Oops, but you need svn. Install svn. Aborting setup, Exiting."; exit 1; } # install ant? hash ant 2>&- || { echo >&2 "Oops, but you need ant. Install ant. Aborting setup, Exiting."; exit 1; } # goto home directory - not needed, but useful to show root location cd ~ # remove gwt working directory # OPTIONAL #rm -rf ~/gwt # make a working directory mkdir ~/gwt # go into that ..... ----->>>>> Find the rest at the link above Hope it helps, Brandon Donnelson http://gwt-examples.googelcode.com -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/pFEPozJKF6sJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
