hugoloza / gwt-platform

Automatically exported from code.google.com/p/gwt-platform
0 stars 0 forks source link

Ensure annotation processors run automatically in Eclipse 3.7 #372

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
For the moment, building and executing GWTP in Eclipse 3.7 requires an `mvn 
package` in order for the annotation processors to run. This is because we use 
<ignore /> here:

<pluginExecution>
    <pluginExecutionFilter>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <versionRange>[2.0.0,)</versionRange>
        <goals>
            <goal>default-compile</goal>
            <goal>default-testCompile</goal>
        </goals>
    </pluginExecutionFilter>
    <action>
        <ignore />
    </action>
</pluginExecution>

We should find a way to use <execute /> instead.

Original issue reported on code.google.com by philippe.beaudoin on 3 Oct 2011 at 5:20

GoogleCodeExporter commented 9 years ago
Some resources:
  https://groups.google.com/forum/#!topic/codehaus-mojo-gwt-maven-plugin-users/Lha85tfYiz4
  http://code.google.com/p/google-web-toolkit/wiki/WorkingWithMaven
  http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryInterfaceValidation

Original comment by philippe.beaudoin on 3 Oct 2011 at 3:43

GoogleCodeExporter commented 9 years ago

Original comment by philippe.beaudoin on 1 Feb 2012 at 6:52