All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tool.Version Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
package org.hibernate.tool;

import java.util.logging.Logger;

final public class Version {

	public static final String VERSION = "5.4.19.Final";
	
	private static final Version instance = new Version();
	
	private static Logger log = Logger.getLogger( Version.class.getName() );

	static {
		log.info( "Hibernate Tools " + VERSION );
	}

	private Version() {
		// dont instantiate me
	}
	
	public String getVersion() {
		return VERSION;
	}
	
	public static Version getDefault() {
		return instance;
	}
	
	public String toString() {
		return getVersion();
	}
	
	public static void touch() {}
	
	public static void main(String[] args) {
		System.out.println(new Version());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy