GAE/Jでアプリケーションのバージョンを取得する方法

    public static String getAppVersionId() {
        return ApiProxy.getCurrentEnvironment().getVersionId();
    }

上記のようにすることで

<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
	<application>id-bluerabbit</application>
	<version>ここの値がとれる</version>
	<system-properties>
        <property name="java.util.logging.config.file" value="WEB-INF/classes/logging.properties"/>
    </system-properties>
	<sessions-enabled>true</sessions-enabled>
</appengine-web-app>