WITH
<pluginRepositories>
<pluginRepository>
<id>gwt-maven.snapshots</id>
<url>http://nexus.codehaus.org/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
and
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.1-SNAPSHOT</version>
</plugin>
I believe that it works with GWT 2.1.
You will receive this warning:
[WARNING] You're project declares dependency on gwt-user 2.1.0. This plugin is designed for version 2.1-SNAPSHOT
but compilation is still ending.
source
share