We have a Maven build that runs the GWT plugin (gwt-maven). Unfortently it is running out of memory.
Do I need to give Maven itself more heap or do I need to give GWT more heap? Any idea how to specify this for a pom.xml file?
|
We have a Maven build that runs the GWT plugin (gwt-maven). Unfortently it is running out of memory. Do I need to give Maven itself more heap or do I need to give GWT more heap? Any idea how to specify this for a pom.xml file? |
|||
|
|
|
I assume |
|||
|
|
|
I had this error with a large GWT project. The error that you will probably see when running out of memory is:
The For an example of the settings you should use with the extraJvmArgs option, see this post. Note that you may need to add the extraJvmArgs option to the plugin element configuration directly - see http://stackoverflow.com/a/5822929/157605. |
||||
|
|
|
Add extraJvmArgs tag under configuration tag for gwt-maven-plugin. Example -
|
||||
|
|