1 |
aurelien |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
|
|
3 |
<application></application>
|
|
|
4 |
<version>1</version>
|
|
|
5 |
|
|
|
6 |
<!-- Configure serving/caching of GWT files -->
|
|
|
7 |
<static-files>
|
|
|
8 |
<include path="**" />
|
|
|
9 |
|
|
|
10 |
<!-- The following line requires App Engine 1.3.2 SDK -->
|
|
|
11 |
<include path="**.nocache.*" expiration="0s" />
|
|
|
12 |
|
|
|
13 |
<include path="**.cache.*" expiration="365d" />
|
|
|
14 |
<exclude path="**.gwt.rpc" />
|
|
|
15 |
</static-files>
|
|
|
16 |
|
|
|
17 |
<!-- Configure java.util.logging -->
|
|
|
18 |
<system-properties>
|
|
|
19 |
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
|
|
|
20 |
</system-properties>
|
|
|
21 |
|
|
|
22 |
</appengine-web-app>
|