diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-10-11 11:45:14 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-10-11 11:45:14 +0000 |
commit | 88b4a215c7c2f10d5e62464fb2a3f7fdaeffe39d (patch) | |
tree | a25ef8a8a7bc4d588a110e36fe713b8b9c04223f /build/build.xml | |
parent | e7f0672b8589eacc8e118ca6647a5d4500d1deee (diff) | |
download | vaadin-framework-88b4a215c7c2f10d5e62464fb2a3f7fdaeffe39d.tar.gz vaadin-framework-88b4a215c7c2f10d5e62464fb2a3f7fdaeffe39d.zip |
Reverted [14702] as it caused #5757. The max values should not affect actual memory allocation anyway.
svn changeset:15485/svn branch:6.4
Diffstat (limited to 'build/build.xml')
-rw-r--r-- | build/build.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml index ff98813857..f3beda09d5 100644 --- a/build/build.xml +++ b/build/build.xml @@ -664,7 +664,7 @@ <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" /> @@ -674,7 +674,8 @@ <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"/> |