]> source.dussan.org Git - vaadin-framework.git/commitdiff
Reverted [14702] as it caused #5757. The max values should not affect actual memory...
authorArtur Signell <artur.signell@itmill.com>
Mon, 11 Oct 2010 11:45:14 +0000 (11:45 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 11 Oct 2010 11:45:14 +0000 (11:45 +0000)
svn changeset:15485/svn branch:6.4

build/build.xml

index ff988138573422c53596b4ed23763dcb83da7521..f3beda09d54ebf48a3dca7df56118adc2d913674 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="128m">
+           <java classname="com.google.gwt.dev.Compiler" failonerror="yes" fork="yes" maxmemory="512m">
                <classpath refid="widgetset-compile-classpath"/>
                
                <arg value="-war" />
                <arg value="${widgetset}" />
 
                <jvmarg value="-Xss8M"/>
-               <jvmarg value="-Djava.awt.headless=true"/>
+            <jvmarg value="-XX:MaxPermSize=256M"/>     
+               <jvmarg value="-Djava.awt.headless=true"/>
            </java>
         <antcall target="remove-widgetset-gwt-tmp"/>