Eclipse上でCytoscape App開発 - heap space error

Cytoscape 3 App開発でコンパイル時にどうしてもJava heap space errorが止まらない...仕方ないので、pom.xmlmaven-compiler-pluginの部分をいじることに。

<configuration>
<source>1.6</source>
<target>1.6</target>
<optimize>true</optimize>
<fork>true</fork>
<maxmem>1024m</maxmem>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<compilerArguments>
<Xmaxwarns>10000</Xmaxwarns>
<Xmaxerrs>10000</Xmaxerrs>
</compilerArguments>
</configuration>

マークした部分を追加したら、コンパイルが通った。