19 lines
557 B
XML
19 lines
557 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
|
<application>jooq-test</application>
|
|
<version>1</version>
|
|
|
|
<!--
|
|
By default, App Engine sends requests serially to a given web server.
|
|
To allow App Engine to send multiple requests in parallel specify:
|
|
|
|
<threadsafe>true</threadsafe>
|
|
-->
|
|
|
|
<!-- Configure java.util.logging -->
|
|
<system-properties>
|
|
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
|
|
</system-properties>
|
|
|
|
</appengine-web-app>
|