OOM when building with java6

The maven-compiler-plugin upgrade from 2.3.2 to 3.1 (see #4279) could cause out of memory issue when building the project with Maven and JDK6 and default memory settings (no `MAVEN_OPTS`).

This issue does not appear with JDK7.
This commit is contained in:
David Pilato 2013-11-28 18:21:42 +01:00
parent 61aba89110
commit fa762f09fa
1 changed files with 1 additions and 0 deletions

View File

@ -318,6 +318,7 @@
<configuration>
<source>1.6</source>
<target>1.6</target>
<fork>true</fork>
</configuration>
</plugin>
<plugin>