]> source.dussan.org Git - vaadin-framework.git/commitdiff
Relaxed memory settings for widgetset compilation. Seems that GWT has been fixed...
authorArtur Signell <artur.signell@itmill.com>
Fri, 3 Sep 2010 05:20:41 +0000 (05:20 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 3 Sep 2010 05:20:41 +0000 (05:20 +0000)
svn changeset:14702/svn branch:6.4

build/build.xml

index f66333432e2474e50cc8fe4855788c8f7cfa6582..ff988138573422c53596b4ed23763dcb83da7521 100644 (file)
        <target name="compile-widgetset" description="Compiles the widgetset given as the first parameter">
                <fail unless="widgetset" message="No widgetset parameter set"/>
                <echo>Compiling widgetset ${widgetset}. Output directory: ${widgetsets-output-dir}</echo>
-           <java classname="com.google.gwt.dev.Compiler" failonerror="yes" fork="yes" maxmemory="512m">
+           <java classname="com.google.gwt.dev.Compiler" failonerror="yes" fork="yes" maxmemory="128m">
                <classpath refid="widgetset-compile-classpath"/>
                
                <arg value="-war" />
                <arg value="-style" />
                <arg value="OBF" />
                <arg value="${widgetset}" />
-               
-               <jvmarg value="-Xss8M"/>
-               <jvmarg value="-XX:MaxPermSize=256M"/>
+
+               <jvmarg value="-Xss8M"/>
                <jvmarg value="-Djava.awt.headless=true"/>
            </java>
         <antcall target="remove-widgetset-gwt-tmp"/>