1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <plugin>
<!--
Ajoute des métadonnées au projet Eclipse généré à partir de ce POM
afin de faciliter l'intégration avec le plugin Eclipse GWT .
-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalProjectnatures>
<projectnature>
com.google.gwt.eclipse.core.gwtNature
</projectnature>
<projectnature>
com.google.gdt.eclipse.core.webAppNature
</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>
com.google.gwt.eclipse.core.gwtProjectValidator
</buildcommand>
</additionalBuildcommands>
<additionalBuildcommands>
<buildcommand>
com.google.gdt.eclipse.core.webAppProjectValidator
</buildcommand>
</additionalBuildcommands>
</configuration>
</plugin> |