Add java8 runtime option to production appengine-web.xml files

It occurs to me that we can't have this setting different between sandbox
and production, otherwise we can end up with a situation where we push code
that works on sandbox but then fails only when it is pushed to production.
Sandbox and production need to always be set up similarly for this reason.

We'll just have to pay a greater amount of attention to the release process
next week than normal, and continue playing around in alpha for the mean
time with a fully Java 8 build.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=170197703
This commit is contained in:
mcilwain 2017-09-27 08:01:39 -07:00 committed by Ben McIlwain
parent 2702c3a7f3
commit c69b409b30
3 changed files with 3 additions and 0 deletions

View file

@ -3,6 +3,7 @@
<application>domain-registry</application>
<version>1</version>
<runtime>java8</runtime>
<module>backend</module>
<threadsafe>true</threadsafe>
<sessions-enabled>true</sessions-enabled>

View file

@ -3,6 +3,7 @@
<application>domain-registry</application>
<version>1</version>
<runtime>java8</runtime>
<module>default</module>
<threadsafe>true</threadsafe>
<sessions-enabled>true</sessions-enabled>

View file

@ -3,6 +3,7 @@
<application>domain-registry</application>
<version>1</version>
<runtime>java8</runtime>
<module>tools</module>
<threadsafe>true</threadsafe>
<sessions-enabled>true</sessions-enabled>