Re: Maven + Eclipse + RequestFactory validation tool: Duplicate class error
Ha, amazing!
Thank you Patrick for the fast and precise answer!
Shouldn't that doc page I linked in the OP be updated?
Best regards,
Tiago.
On Oct 27, 3:43 pm, Patrick Julien <pjul...@gmail.com> wrote:
> only include generated-sources/apt in your maven build
> using build-helper-maven-plugin
>
> <!-- Google Plugin for Eclipse (GPE) won't see the source generated above
> by requestfactory-apt unless it is exposed as an additional source
> dir -->
> <plugin>
> <groupId>org.codehaus.mojo</groupId>
> <artifactId>build-helper-maven-plugin</artifactId>
> <version>1.7</version>
> <executions>
> <execution>
> <id>add-source</id>
> <phase>generate-sources</phase>
> <goals>
> <goal>add-source</goal>
> </goals>
> <configuration>
> <sources>
>
> <source>${project.build.directory}/generated-sources/apt</source>
> </sources>
> </configuration>
> </execution>
> </executions>
> </plugin>
>
> For eclipse, make sure you have the m2e connector
> for build-helper-maven-plugin installed
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home