hibernate-orm/hibernate-java8/hibernate-java8.gradle

29 lines
614 B
Groovy

dependencies {
compile( project(':hibernate-core') )
testCompile( project(':hibernate-testing') )
}
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
tasks.withType( JavaCompile.class ).all { task->
task.options.compilerArgs += [
"-nowarn",
"-encoding", "UTF-8",
"-source", sourceCompatibility,
"-target", targetCompatibility
]
}
def pomName() {
return 'Java8-specific Hibernate O/RM functionality'
}
def pomDescription() {
return 'Mainly support for Java8 Date/Time (JSR 310)'
}
def osgiDescription() {
return pomDescription()
}