18 lines
362 B
Groovy
18 lines
362 B
Groovy
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
|
|
}
|