If I specify a given max heap size and perm gen size in an exported shell variable i.e. JAVA_OPTS or MAVEN_OPTS and the Maven build forks the JVM, will the child JVM "inherit" or attempt to access the same configuration as the parent JVM, when I run my build from the shell?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Nope, they won't inherit. This is a common problem with Maven plugins; they usually have a parameter (e.g. surefire's argLine) that lets you specify what JVM options you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.