Skip to content

Instantly share code, notes, and snippets.

@niloc132
Created September 27, 2011 18:01
Show Gist options
  • Save niloc132/1245766 to your computer and use it in GitHub Desktop.
Save niloc132/1245766 to your computer and use it in GitHub Desktop.
gwt and gwt-m-p vers mismatch
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>test</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment