Hi there,
I am having trouble with GWT 2.4 using Request factory with Maven 2.2.1 build.
I have followed this URL:
http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryInterfaceValidation#Maven_buildsThe maven build works, but validation tool is not run, I can see that by the error I get at run-time. Should not
requestfactory-apt
automatically pick up the request factory classes?
What did I miss? The following is what my POM.xml looks like,
Thanks,
yan
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
<dependencies>
<dependency>
<groupId>com.google.web.bindery</groupId>
<artifactId>requestfactory-apt</artifactId>
<version>2.4.0</version>
</dependency>
</dependencies>
</plugin>