How do I control the -Xmx value in tomcatinsetenv.bat from local.properties or build.xml? I would like to increase the memory for all developers working on the spec
Add following property in install-staging/local.properties (with desired value)
server.jvm.Xmx=2048M
and execute following in install-staging
ant setup-tomcat-server
Its not recommended to change this value in install-staginguild.properties. Since this branch can be shared by other spec as well and they may not desire this change. Instead of this you can create a properties file for your spec. e.g. if your spec file in instance-specs is Neo3.2.spec then create Neo3.2.properties in the same directory and add the property mentioned above. You need to submit this file to perforce so that every time the spec is bootstrapped, the config is applied in tomcat.