我的项目配置 pom.xml 包含:
<gae.version>1.8.6</gae.version>
稍后直接引用 web.xml ......
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
<webResources>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
....但是我的 web.xml 是空的,因为我使用 app.yaml 来定义我的处理程序。我可以删除此插件元素而不会产生任何后果吗?maven-surefire-plugin 呢?