This is the maven config from the root maven project:
<build>
        <plugins>
            <plugin>
                <groupId>net.ltgt.gwt.maven</groupId>
                <artifactId>gwt-maven-plugin</artifactId>
                <inherited>false</inherited>
                <configuration>

<launcherDir>${project.build.directory}/gwt/launcherDir</launcherDir>
                    <jvmArgs>
                        <jvmArg>-Xms512m</jvmArg>
                        <jvmArg>-Xmx2048m</jvmArg>
                    </jvmArgs>
                    <logLevel>INFO</logLevel>
                </configuration>
            </plugin>
        </plugins>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.3</version>
                    <configuration>
                        <source>1.8</source>
                        <target>1.8</target>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>net.ltgt.gwt.maven</groupId>
                    <artifactId>gwt-maven-plugin</artifactId>
                    <version>1.0-rc-4</version>
                    <extensions>true</extensions>
                    <configuration>
                        <sourceLevel>1.7</sourceLevel>
                        <failOnError>true</failOnError>
                    </configuration>
                </plugin>
                <plugin>
                    <artifactId>maven-source-plugin</artifactId>
                    <version>2.4</version>
                    <executions>
                        <execution>
                            <id>attach-sources</id>
                            <phase>package</phase>
                            <goals>
                                <goal>jar-no-fork</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.apache.tomcat.maven</groupId>
                    <artifactId>tomcat7-maven-plugin</artifactId>
                    <version>2.2</version>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

The editor-client projects has the following plugin config:
    <build>
        <plugins>
            <plugin>
                <groupId>net.ltgt.gwt.maven</groupId>
                <artifactId>gwt-maven-plugin</artifactId>
                <configuration>
                    <moduleName>com.acme.cloud.ui.demo.Demo</moduleName>
                    <moduleShortName>Demo</moduleShortName>
                    <skipModule>true</skipModule>
                    <jvmArgs>
                        <jvmArg>-Xms512m</jvmArg>
                        <jvmArg>-Xmx2048m</jvmArg>
                    </jvmArgs>
                </configuration>
            </plugin>
        </plugins>
    </build>

On Mon, Dec 28, 2015 at 5:15 PM, Brandon Donnelson <[email protected]>
wrote:

> Could you share the gwt-maven-plugin configuration?
>
> On Monday, December 21, 2015 at 11:38:12 PM UTC-8, stuckagain wrote:
>>
>> I have been using 2.8.0-beta1 in combination with Thomas Broyer's maven
>> plugin for a week now.
>>
>> When I run the codeserver and make changes a reload of the browser does
>> not always include the last changes that I made.
>> At the start it seems to work fine but then after a few code changes and
>> refreshes it stops working.
>>
>> If I just stop de codeserver and restart it then suddenly the changes are
>> available.
>>
>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/5a556906-6f82-4bfa-a255-625057c6d0ec%40googlegroups.com
> <https://groups.google.com/d/msgid/google-web-toolkit-contributors/5a556906-6f82-4bfa-a255-625057c6d0ec%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/CABrJHW1_QF1PMk%3D1Zp1avmrStk8ehXD2RuMn5hmAPidGDeXc5g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to