You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.txt 1022B

1234567891011121314151617181920212223242526272829303132333435
  1. See documentation on build.xml how product is build.
  2. How to build packages
  3. =====================
  4. 1. See build/GWT-VERSION.properties file
  5. - states the GWT version used within this project
  6. 2. Checkout correct GWT distribution version for your platform from http://dev.vaadin.com/svn/gwt/
  7. - note, you have to checkout GWT for all platforms when doing release builds
  8. 3. Extract or link GWT distribution under build/gwt/<platform> directory / directories
  9. - <platform> = linux|windows|mac
  10. 4. Run ant package-<platform> in build directory
  11. 5. Enjoy build/result/vaadin-<platform>-<version>.tar.gz
  12. Complete example for building from scratch
  13. ==========================================
  14. This is run in an empty directory on Ubuntu 8.10 to checkout sources from svn and
  15. to build a complete Vaadin package.
  16. svn co http://dev.vaadin.com/svn/trunk/
  17. svn co http://dev.vaadin.com/svn/gwt/
  18. cd gwt
  19. tar xfj gwt-linux-1.5.3.tar.bz2
  20. cd ../trunk/build
  21. mkdir gwt
  22. cd gwt
  23. ln -sf ../../../gwt/gwt-linux-1.5.3 linux
  24. cd ..
  25. ant package-linux