提交 1476fab0 编写于 作者: K Kohsuke Kawaguchi

Reduce PermGen pressure

Full clean Maven build has been failing with PermGen out of space on my system for
a while. Memory analysis indicates that there are excessive javac
instances lying around, so create fresh ones each time to avoid this.

With this change, I no longer need bigger heap size.
上级 233209ba
......@@ -327,6 +327,12 @@ THE SOFTWARE.
<artifactId>maven-deploy-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerReuseStrategy>alwaysNew</compilerReuseStrategy>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.2</version>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册