2018-01-10 15:06:58 -06:00
|
|
|
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
|
|
|
description = '(deprecated - use hibernate-core instead) Hibernate O/RM implementation of the JPA specification'
|
|
|
|
|
2016-06-17 13:35:03 -05:00
|
|
|
dependencies {
|
|
|
|
compile( project( ':hibernate-core' ) )
|
|
|
|
compile( libraries.dom4j )
|
|
|
|
compile( libraries.commons_annotations )
|
|
|
|
compile( libraries.jpa )
|
2016-10-04 22:43:27 +02:00
|
|
|
compile( libraries.byteBuddy )
|
2016-06-17 13:35:03 -05:00
|
|
|
compile( libraries.jta )
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-10 15:06:58 -06: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-17 13:35:03 -05:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest = null
|
2016-06-18 12:10:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sourcesJar {
|
|
|
|
manifest = null
|
|
|
|
}
|
|
|
|
|
2018-01-10 15:06:58 -06:00
|
|
|
javadocJar {
|
|
|
|
manifest = null
|
|
|
|
}
|