Vaadin version during runtime

Hi

Is there any way to get Vaadin version directly from Java code? I mean in some way similar like getting Java version:

System.getProperty( "java.version" )

So if I want to show Vaadin version somewhere in my application I don’t have to set it manually.
Maybe some abstract class with some methods/fields like:

com.vaadin.Vaadin.version()

com.vaadin.terminal.gwt.server.AbstractApplicationServlet.VERSION has the literal string version. They also have some integer fields VERSION_MAJOR, VERSION_MINOR and VERSION_REVISION, plus another string VERSION_BUILD.