GAEにデプロイしようとすると、次のエラーが発生します。
appengine-web.xsdに対してappengine-web.xmlを検証するXMLエラー
私のappengine-web.xmlは次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>whatever</application>
<version>0-8-4</version>
<!-- Configure serving/caching of GWT files -->
<static-files>
<include path="**" />
<!-- The following line requires App Engine 1.3.2 SDK -->
<include path="**.nocache.*" expiration="0s" />
<include path="**.cache.*" expiration="365d" />
<exclude path="**.gwt.rpc" />
<!-- To use Font Awesome in Firefox -->
<include path="/../**" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
</static-files>
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
<threadsafe>true</threadsafe>
</appengine-web-app>
エラーの原因となっている行は次のとおりです。
<!-- To use Font Awesome in Firefox -->
<include path="/../**" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
以前はこのようでしたが、同じエラーが発生します。
<include path="/../font" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
<include path="/../css" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
誰もが何が問題なのかわかりますか?
編集これは私のwarファイル構造がどのように見えるかです: