私のプロジェクト構成 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>
....しかし、app.yaml を使用してハンドラーを定義しているため、私の web.xml は空です。このプラグイン要素を何の影響もなく削除できますか? maven-surefire-plugin はどうですか?