App Engine Standard Env uses the Java Servlet 2.5 <https://cloud.google.com/appengine/docs/standard/java/runtime> API. Flexible Env uses Servlet 3.1 <https://cloud.google.com/appengine/docs/flexible/>
The sample pom.xml <https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/appengine/helloworld/pom.xml> for Standard Env -- apparently valid for compat -- and the sample pom.xml <https://github.com/GoogleCloudPlatform/getting-started-java/blob/master/helloworld-servlet/pom.xml> for the new noncompat Flex env, with different Servlet versions in each, say that the *scope *is *provided.* As you know, our internal libraries are shared across Standard and Flexible Env. Although most of our servlets run in only one or the other, we want compatible code. What do you recommend we do? Alter the pom that we use in noncompat Flex to specify 2.5 to ensure backwards compatibility (while the provided library will have a different version according to GAE environment type)? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAD%3DB7cMQGnYo4fzWG29%2BHVGES5gh6RzSh1ZNH%2Bue0DrJZq%3D-Aw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
