org.hibernate.cfg.annotations.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: $
package org.hibernate.cfg.annotations;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* @author Emmanuel Bernard
*/
public class Version {
public static final String VERSION = "3.2.1.GA";
private static Log log = LogFactory.getLog( Version.class );
static {
log.info( "Hibernate Annotations " + VERSION );
}
public static void touch() {
}
}