Thomas Broyer closed Improvement MGWT-354 as Not A Bug

AFAICT, this is how Maven works, and I see no reason the gwt-maven-plugin would work otherwise.

The way to make it work is to use a property in your POM:

  <properties>
    <gwt.extraJvmArgs>-Xmx2048</gwt.extraJvmArgs>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>gwt-maven-plugin</artifactId>
        <configuration>
          <extraJvmArgs>${gwt.extraJvmArgs}</extraJvmArgs>
        </configuration>
      </plugin>
    </plugins>
  </build>
Change By: Thomas Broyer (12/Mar/13 9:34 AM)
Resolution: Not A Bug
Status: Open Closed
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to