Put this in the <build> section of your pom
<pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>com.google.appengine</groupId> <artifactId>appengine-maven-plugin</artifactId> <versionRange>[1.8.3,)</versionRange> <goals> <goal>endpoints_get_discovery_doc</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement>
Source: M2Eclipse Documentation
source share