Using GWT 2.3 SDK with Maven's GWT plugin 2.2.0
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.2.0</version>
<configuration>
<modules>
<module>dp.verp.view.availability.Availability</module>
</modules>
<runTarget>/availability/index.html</runTarget>
</configuration>
<executions>
<execution>
<goals>
<goal>resources</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
<!-- This is probably what you're missing -->
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.ver}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.ver}</version>
</dependency>
</dependencies>
</plugin>
Comments
Post a Comment