]> source.dussan.org Git - vaadin-framework.git/commitdiff
Update to GWT 2.7.0 (#14522)
authorArtur Signell <artur@vaadin.com>
Fri, 21 Nov 2014 07:12:21 +0000 (09:12 +0200)
committerArtur Signell <artur@vaadin.com>
Fri, 21 Nov 2014 09:34:14 +0000 (11:34 +0200)
GWT codeserver has been integrated into gwt-dev.jar

Change-Id: Ia9cd252482e25ed8e0d69da7c0e702d6407efd8b

build.properties
gwt-files.xml

index 9df1c8d767dfe63c2dea99bd944840fc40096257..286713b61623d0f531ff4b34da0167973d9127f2 100644 (file)
@@ -6,5 +6,5 @@ vaadin.url=http://vaadin.com
 vaadin.java.version=1.6
 vaadin.version=0.0.0.unversioned-development-build
 vaadin.sass.version=0.9.10
-gwt.version=2.7.0.beta1vaadin1
+gwt.version=2.7.0.vaadin1
 commons-io.version=2.4
index c0ef58317730948b8119381b3d73644cabbd3ea9..26126a7ffbd7064704dc49248c238e5201e4aca4 100644 (file)
@@ -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">
 
         </fileset>
 
-        <!-- GWT SuperDevMode -->
-        <fileset dir="${gwt.codeserver.jar.files}">
-            <exclude name="META-INF/**" />
-        </fileset>
     </union>
 
     <union id="client-compiled-cache.gwt.includes">