選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Artur Signell c2a6543cbf Merged all 5.4 build script and testing tools related changes to 6.0 15年前
..
bin Merged all 5.4 build script and testing tools related changes to 6.0 15年前
buildhelpers/com/itmill/toolkit/buildhelpers Fixed build problem (missing beancontainer.jar) 15年前
javadoc svn changeset:59/svn branch:toolkit 17年前
package Merged all 5.4 build script and testing tools related changes to 6.0 15年前
GWT-VERSION.properties GWT version 1.5.3 is used to build Toolkit. Actually 5.3.0rc4 already used 1.5.3. 15年前
ITMillApache2LicenseForJavaFiles.txt Updated copyright notices from 2008 to 2009. Fixes #2671. 15年前
VERSION.properties Changed versions to development so built packages are not confused with the release packages 15年前
build.properties Merge from versions/5.4 to versions/6.0: 15年前
build.xml Merged all 5.4 build script and testing tools related changes to 6.0 15年前
html-style.properties Updated copyright notices from 2008 to 2009. Fixes #2671. 15年前
readme.txt Updated build instructions 15年前

readme.txt

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.itmill.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/itmill-toolkit-<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 IT Mill Toolkit package.

svn co http://dev.itmill.com/svn/trunk/
svn co http://dev.itmill.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