diff options
author | Artur Signell <artur@vaadin.com> | 2014-11-21 09:12:21 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-11-21 11:34:14 +0200 |
commit | 0545cb2999c83b11da55477211b87865bae98bba (patch) | |
tree | f68e540b3291e389aab213da5216c1cdfe6ec9a9 /gwt-files.xml | |
parent | bd4c7aa5407951f635e4af17436a6b00e4a8c130 (diff) | |
download | vaadin-framework-0545cb2999c83b11da55477211b87865bae98bba.tar.gz vaadin-framework-0545cb2999c83b11da55477211b87865bae98bba.zip |
Update to GWT 2.7.0 (#14522)
GWT codeserver has been integrated into gwt-dev.jar
Change-Id: Ia9cd252482e25ed8e0d69da7c0e702d6407efd8b
Diffstat (limited to 'gwt-files.xml')
-rw-r--r-- | gwt-files.xml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gwt-files.xml b/gwt-files.xml index c0ef583177..26126a7ffb 100644 --- a/gwt-files.xml +++ b/gwt-files.xml @@ -7,44 +7,37 @@ <ivy:cachepath pathid="gwt-dev.classpath" conf="gwt-dev" /> <ivy:cachepath pathid="gwt-user.classpath" conf="gwt-user" /> <ivy:cachepath pathid="gwt-elemental.classpath" conf="gwt-elemental" /> - <ivy:cachepath pathid="gwt-codeserver.classpath" conf="gwt-codeserver" /> <property name="gwt.eclipse.basedir" location="${gwt.basedir}/eclipse" /> <property name="gwt.user.jar" refid="gwt-user.classpath" /> <property name="gwt.dev.jar" refid="gwt-dev.classpath" /> <property name="gwt.elemental.jar" refid="gwt-elemental.classpath" /> - <property name="gwt.codeserver.jar" refid="gwt-codeserver.classpath" /> <available file="${gwt.dev.jar}" property="gwt.dev.jar.found" /> <available file="${gwt.user.jar}" property="gwt.user.jar.found" /> <available file="${gwt.elemental.jar}" property="gwt.elemental.jar.found" /> - <available file="${gwt.codeserver.jar}" property="gwt.codeserver.jar.found" /> <property name="gwt.unpack.dir" location="${vaadin.basedir}/build/gwt" /> <property name="gwt.user.jar.files" location="${gwt.unpack.dir}/gwt-user.jar" /> <property name="gwt.dev.jar.files" location="${gwt.unpack.dir}/gwt-dev.jar" /> <property name="gwt.elemental.jar.files" location="${gwt.unpack.dir}/gwt-elemental.jar" /> - <property name="gwt.codeserver.jar.files" location="${gwt.unpack.dir}/gwt-codeserver.jar" /> <target name="unpack.gwt"> <fail unless="gwt.dev.jar.found" message="Could not find gwt-dev.jar at ${gwt.dev.jar}" /> <fail unless="gwt.user.jar.found" message="Could not find gwt-user.jar at ${gwt.user.jar}" /> <fail unless="gwt.elemental.jar.found" message="Could not find gwt-elemental.jar at ${gwt.elemental.jar}" /> - <fail unless="gwt.codeserver.jar.found" message="Could not find gwt-codeserver.jar at ${gwt.codeserver.jar}" /> <delete dir="${gwt.unpack.dir}" /> <mkdir dir="${gwt.user.jar.files}" /> <mkdir dir="${gwt.dev.jar.files}" /> <mkdir dir="${gwt.elemental.jar.files}" /> - <mkdir dir="${gwt.codeserver.jar.files}" /> <unzip dest="${gwt.user.jar.files}" src="${gwt.user.jar}" /> <unzip dest="${gwt.dev.jar.files}" src="${gwt.dev.jar}" /> <unzip dest="${gwt.elemental.jar.files}" src="${gwt.elemental.jar}" /> - <unzip dest="${gwt.codeserver.jar.files}" src="${gwt.codeserver.jar}" /> </target> <union id="client-compiler.gwt.includes"> @@ -124,10 +117,6 @@ </fileset> - <!-- GWT SuperDevMode --> - <fileset dir="${gwt.codeserver.jar.files}"> - <exclude name="META-INF/**" /> - </fileset> </union> <union id="client-compiled-cache.gwt.includes"> |