2016-06-23 03:34:34 -04:00
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
|
|
|
description = '(deprecated - use hibernate-core instead) Support for Java8-specific features - mainly Java8 Date/Time (JSR 310)'
|
2016-06-23 03:34:34 -04:00
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
dependencies {
|
|
|
|
compile( project( ':hibernate-core' ) )
|
2016-06-23 03:34:34 -04:00
|
|
|
}
|
2018-01-10 16:06:58 -05:00
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// The OSGi JAR manifest support does not like a non-existent classes dir,
|
|
|
|
// so make sure we dont use the OSGi one :)
|
2016-06-23 03:34:34 -04:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest = null
|
|
|
|
}
|
|
|
|
|
|
|
|
sourcesJar {
|
|
|
|
manifest = null
|
2018-01-10 16:06:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
javadocJar {
|
|
|
|
manifest = null
|
|
|
|
}
|