Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Artur Signell 24bb45a88f remove extra "maven." from gpg passphrase property 14 лет назад
..
bin Updated build scripts to build only one platform-independent package (#3811). Updated sample widgetset build script for GWT 2.0 (#3972). Also removed obsolete Mac DMG target. 14 лет назад
buildhelpers/com/vaadin/buildhelpers Theme version check for #3416 14 лет назад
cssoptimizer Merges from 6.0 branch. 15 лет назад
javadoc svn changeset:59/svn branch:toolkit 17 лет назад
maven Updated maven version to 6.3 14 лет назад
package Updated build scripts to build only one platform-independent package (#3811). Updated sample widgetset build script for GWT 2.0 (#3972). Also removed obsolete Mac DMG target. 14 лет назад
GWT-VERSION.properties Initial GWT 2.0.0 support (#3810) 14 лет назад
ITMillApache2LicenseForJavaFiles.txt Updated copyright notices from 2008 to 2009. Fixes #2671. 15 лет назад
VERSION.properties Initial GWT 2.0.0 support (#3810) 14 лет назад
build.properties Initial GWT 2.0.0 support (#3810) 14 лет назад
build.xml remove extra "maven." from gpg passphrase property 14 лет назад
html-style.properties Some renamings for Vaadin 6.0 package. 15 лет назад
readme.txt Some renamings for Vaadin 6.0 package. 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.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