Re: Pass JVM options in ofbizBackground

2022-01-13 Thread Michael Brohl
Hi, you should be able to pass JVM arguments using "-PjvmArgs". This should work: gradlew ofbiz -PjvmArgs="-Xms1024M -Xmx2048M" This is implemented in build.gradle and README.doc. If this still fails, please open a Jira bug issue with detailed description of used version and process. Maybe

Re: Pass JVM options in ofbizBackground

2022-01-13 Thread Jacques Le Roux
Hi Serge, You may also edit gradle.properties, but it's the same issue because it's also committed, maybe simpler though Jacques Le 10/01/2022 à 17:19, Bs Serge a écrit : For now, I had to edit JVM args in the build.gradle file but I don't know if thats the recommended way. regards,

Re: Pass JVM options in ofbizBackground

2022-01-10 Thread Bs Serge
For now, I had to edit JVM args in the build.gradle file but I don't know if thats the recommended way. regards,

Pass JVM options in ofbizBackground

2022-01-10 Thread Bs Serge
Hi all, I'm starting OFBIZ in the background but I'm failing to add memory JVM options using below commands : ./gradlew ofbizBackground -PjvmArgs="-Xms1024m -Xmx11g" ./gradlew -Porg.gradle.jvmargs=-Xmx11g ofbizBackground Below is the command that ends up getting executed with Xms128M -Xmx1024M