I use "mvn exec:java" to run my program:
mvn exec:java -Dexec.mainClass="..." -Dexec.args="..."
I didn't find to change the maximum memory allocation to the JVM.
I tried -Dexec.commandlineArgs="..." but that didn't work...
<commandlineArgs>
(or -Dexec.args when given in the CLI) is for specifying the arguments given to the program, not the JVM.
As exec:java executes a Java program in the same VM as the Maven one, just change the Maven JVM memory settings (so MAVEN_OPTS) to get more memory for your exec:java command.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With