24 lines
599 B
Groovy
24 lines
599 B
Groovy
/*
|
|
* 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>.
|
|
*/
|
|
dependencies {
|
|
compile( project(':hibernate-core') )
|
|
testCompile( project(':hibernate-testing') )
|
|
}
|
|
|
|
javaTarget {
|
|
version = '1.8'
|
|
}
|
|
|
|
mavenPom {
|
|
name = 'Java8-specific Hibernate O/RM functionality'
|
|
description = 'Support for Java8-specific features - mainly Java8 Date/Time (JSR 310)'
|
|
}
|
|
|
|
def osgiDescription() {
|
|
return mavenPom.description
|
|
}
|