Skip to content

Commit

Permalink
Adjust max memory so codeserver works out of the box (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur- authored and hesara committed Mar 15, 2017
1 parent 510aff8 commit 600c4c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ public abstract class AbstractGwtShellMojo

/**
* Extra JVM arguments that are passed to the GWT-Maven generated scripts (for compiler, shell, etc - typically use
* -Xmx512m here, or -XstartOnFirstThread, etc).
* -Xmx2G here, or -XstartOnFirstThread, etc).
* <p>
* Can be set from command line using '-Dgwt.extraJvmArgs=...', defaults to setting max Heap size to be large enough
* for most GWT use cases.
* </p>
*/
@Parameter(property = "gwt.extraJvmArgs", defaultValue="-Xmx512m")
@Parameter(property = "gwt.extraJvmArgs", defaultValue="-Xmx1G")
private String extraJvmArgs;

/**
Expand Down

0 comments on commit 600c4c7

Please sign in to comment.