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

org.hibernate.search.engine.Version Maven / Gradle / Ivy

There is a newer version: 8.0.0.Alpha1
Show newest version
/*
 * Hibernate Search, full-text search for your domain model
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.search.engine;

import org.hibernate.search.util.common.annotation.Search5DeprecatedAPI;

/**
 * @author Emmanuel Bernard
 * @author Hardy Ferentschik
 */
public final class Version {

	private Version() {
		//not allowed
	}

	/**
	 * @return A string representation of the version of Hibernate Search.
	 */
	public static String versionString() {
		// This implementation is replaced during the build with another one that returns the correct value.
		return "UNKNOWN";
	}

	/**
	 * @return A string representation of the version of Hibernate Search.
	 * @deprecated Use {@link #versionString()} instead.
	 */
	@Deprecated
	@Search5DeprecatedAPI
	public static String getVersionString() {
		return versionString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy