goja.initialize.GojaBootVersion Maven / Gradle / Ivy
The newest version!
package goja.initialize;
/**
*
*
* @author sog
* @version 1.0
* @since JDK 1.6
*/
public final class GojaBootVersion {
private GojaBootVersion() {
}
/**
* Return the full version string of the present Goja Boot codebase, or {@code null}
* if it cannot be determined.
* @return the version of Goja Boot or {@code null}
* @see Package#getImplementationVersion()
*/
public static String getVersion() {
Package pkg = GojaBootVersion.class.getPackage();
return (pkg != null ? pkg.getImplementationVersion() : null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy