Hello all - I'm having a difficult time getting the javadoc plugin
working with a rather large codebase.
I keep running out of memory even though I'm using the addtionalJOption
tag as follows:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalJOption>-J-XX:MaxPermSize=512</additionalJOption>
<quiet>true</quiet>
</configuration>
</plugin>
I've searched around and thought this was the correct way to go by all
the google responses. Am I supposed to use this in conjunction with
maxmemory (which works and exposes a javadoc error on our part)?