1<?xml version="1.0" encoding="utf-8"?>
2<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
3  <!-- Fill in the app name and version -->
4  <application></application>
5  <version></version>
6  <!-- TODO(???) please update threadsafe to true if code is threadsafe -->
7  <threadsafe>false</threadsafe>
8
9  <!-- Configure serving/caching of GWT files -->
10  <static-files>
11    <include path="**" />
12
13    <!-- The following line requires App Engine 1.3.2 SDK -->
14    <include path="**.nocache.*" expiration="0s" />
15
16    <include path="**.cache.*" expiration="365d" />
17    <exclude path="**.gwt.rpc" />
18  </static-files>
19
20</appengine-web-app>
21