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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Nope, they won't inherit. This is a common problem with Maven plugins; they usually have a parameter (e.g. surefire's |
|||
|
|