Search code examples
javamaven

mvn java:exec with increased memory


I use "mvn exec:java" to run my program:

mvn exec:java -Dexec.mainClass="..." -Dexec.args="..."

I didn't find how to change the maximum memory allocation to the JVM.

I tried -Dexec.commandlineArgs="..." but that didn't work...


Solution

  • <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.