view src/main/java/org/monetdb/jdbc/MonetVersion.java.in @ 824:9b4c7faaa860

Add missing license header. Also removed public from this class as it is not part of JDBC public API.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 20 Dec 2023 16:36:07 +0100 (16 months ago)
parents f7df78989ac5
children e890195256ac
line wrap: on
line source
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0.  If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * Copyright 1997 - July 2008 CWI, August 2008 - 2023 MonetDB B.V.
 */

package org.monetdb.jdbc;

final class MonetVersion {

	/**
	 * Major version of MonetDB JDBC driver.
	 */
	public static int majorVersion = @JDBC_MAJOR@;

	/**
	 * Minor version of MonetDB JDBC driver.
	 */
	public static int minorVersion = @JDBC_MINOR@;

	/**
	 * Full version string of MonetDB JDBC driver.
	 */
	public static String driverVersion = "@JDBC_MAJOR@.@JDBC_MINOR@ (@JDBC_VER_SUFFIX@)";
}