I created a brand new project with 1.3.8 sdk, deploy to live server,
and the SystemProperty.version is still:

"Google App Engine/1.3.7".

Can anyone help? How do I verify what version of jars I deployed to
production?

@SuppressWarnings("serial")
public class VikiSpot8Servlet extends HttpServlet {
        public void doGet(HttpServletRequest req, HttpServletResponse resp)
                        throws IOException {
                resp.setContentType("text/plain");

                String ver = SystemProperty.version.get();
                resp.getWriter().println(ver);
                //resp.getWriter().println("Hello, world");
        }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to