2018-01-10 16:06:58 -05:00
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
|
|
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
|
|
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
|
|
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
apply plugin: 'base'
|
|
|
|
|
|
|
|
ext {
|
2018-02-15 13:08:03 -05:00
|
|
|
hibernateVersion = '5.3.0-SNAPSHOT'
|
2018-01-10 16:06:58 -05:00
|
|
|
baselineJavaVersion = '1.8'
|
|
|
|
jpaVersion = '2.2'
|
|
|
|
|
|
|
|
final String[] hibernateVersionComponents = project.hibernateVersion.split( '\\.' )
|
|
|
|
hibernateMajorMinorVersion = hibernateVersionComponents[0] + '.' + hibernateVersionComponents[1]
|
|
|
|
hibernateMajorVersion = hibernateVersionComponents[0]
|
|
|
|
|
|
|
|
isSnapshot = project.hibernateVersion.endsWith( "-SNAPSHOT" )
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'org.hibernate'
|
|
|
|
version = project.hibernateVersion
|