vaadin-framework/build
2009-12-02 15:10:23 +00:00
..
bin Merged [9670] from 6.1 to 6.2 branch: Changelog links should link to dev.vaadin.com, not dev.itmill.com. Fixes #3662. 2009-11-23 09:25:01 +00:00
buildhelpers/com/vaadin/buildhelpers The Button Component Strikes Back 2009-08-27 12:26:49 +00:00
cssoptimizer Merges from 6.0 branch. 2009-05-08 12:49:39 +00:00
javadoc svn changeset:59/svn branch:toolkit 2006-10-18 06:35:24 +00:00
maven Updated Maven version to 6.2-SNAPSHOT 2009-11-09 11:16:32 +00:00
package Fixed invalid version placeholder in Eclipse .classpath of the installation package. 2009-12-02 15:10:23 +00:00
build.properties Renaming ITMILL/ -> VAADIN/ part 2 (for #2904) 2009-05-12 13:08:56 +00:00
build.xml Updated build-widgetset.xml script for Vaadin 6.2. For #3640. 2009-12-02 00:48:28 +00:00
GWT-VERSION.properties Updated default version to 6.1.development and GWT-VERSION to 1.7.0 2009-08-11 08:03:08 +00:00
html-style.properties Some renamings for Vaadin 6.0 package. 2009-05-14 14:31:22 +00:00
ITMillApache2LicenseForJavaFiles.txt Updated copyright notices from 2008 to 2009. Fixes #2671. 2009-02-24 15:08:05 +00:00
readme.txt Some renamings for Vaadin 6.0 package. 2009-05-14 14:31:22 +00:00
VERSION.properties Always get version number from property file, also for nightlies. For #3553. 2009-10-20 14:46:59 +00:00

See documentation on build.xml how product is build.

How to build packages
=====================

1. See build/GWT-VERSION.properties file
- states the GWT version used within this project

2. Checkout correct GWT distribution version for your platform from http://dev.vaadin.com/svn/gwt/
- note, you have to checkout GWT for all platforms when doing release builds

3. Extract or link GWT distribution under build/gwt/<platform> directory / directories
- <platform> = linux|windows|mac

4. Run ant package-<platform> in build directory

5. Enjoy build/result/vaadin-<platform>-<version>.tar.gz



Complete example for building from scratch
==========================================
This is run in an empty directory on Ubuntu 8.10 to checkout sources from svn and
to build a complete Vaadin package.

svn co http://dev.vaadin.com/svn/trunk/
svn co http://dev.vaadin.com/svn/gwt/
cd gwt
tar xfj gwt-linux-1.5.3.tar.bz2
cd ../trunk/build
mkdir gwt
cd gwt
ln -sf ../../../gwt/gwt-linux-1.5.3 linux
cd ..
ant package-linux