diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-04-08 12:13:01 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-04-08 12:13:01 +0000 |
commit | e212a29a42b48ac4262194ba839bc5990a6a97dd (patch) | |
tree | 61a6457bda280d00b471066378311710169a6808 /build | |
parent | a32ac8c079fd00201357238bd34da7a31d4509f2 (diff) | |
download | vaadin-framework-e212a29a42b48ac4262194ba839bc5990a6a97dd.tar.gz vaadin-framework-e212a29a42b48ac4262194ba839bc5990a6a97dd.zip |
#6693 Updated to GWT 2.3.0-m1. Will cause a lot of compilation errors if validation*.jar is not on classpath when compiling the widgetset
svn changeset:18181/svn branch:6.6
Diffstat (limited to 'build')
-rw-r--r-- | build/GWT-VERSION.properties | 2 | ||||
-rw-r--r-- | build/build.xml | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/build/GWT-VERSION.properties b/build/GWT-VERSION.properties index 6e92553203..36c325e8d5 100644 --- a/build/GWT-VERSION.properties +++ b/build/GWT-VERSION.properties @@ -1 +1 @@ -gwt-version=2.2.0 +gwt-version=2.3.0-m1 diff --git a/build/build.xml b/build/build.xml index 232c175dfb..0477e950bd 100644 --- a/build/build.xml +++ b/build/build.xml @@ -139,6 +139,8 @@ <!-- required when compiling WebContent/VAADIN/widgetsets (and also Java server-side classes) --> <property name="lib-gwt-dev" location="${gwt-dir}/gwt-dev-noservlet.jar" /> <property name="lib-gwt-user" location="${gwt-dir}/gwt-user-noservlet.jar" /> + <property name="lib-gwt-validation" location="${gwt-dir}/validation-api-1.0.0.GA.jar" /> + <property name="lib-gwt-validation-src" location="${gwt-dir}/validation-api-1.0.0.GA-sources.jar" /> <echo>We are using gwt version ${gwt-version}.</echo> @@ -647,6 +649,8 @@ <path id="widgetset-compile-classpath"> <pathelement location="${lib-gwt-user}" /> <pathelement location="${lib-gwt-dev}" /> + <pathelement location="${lib-gwt-validation}" /> + <pathelement location="${lib-gwt-validation-src}" /> <pathelement location="${result-path}/classes" /> <pathelement location="${result-path}/src/core" /> <pathelement location="${result-path}/src/demo" /> |