HHH-10823 - Consider adding hibernate-entitymanager again

This commit is contained in:
Steve Ebersole 2016-06-17 13:35:03 -05:00
parent b7f17ce898
commit 45cd13a68f
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// keep dependencies for transitivity to consumers
dependencies {
compile( project( ':hibernate-core' ) )
compile( libraries.dom4j )
compile( libraries.commons_annotations )
compile( libraries.jpa )
compile( libraries.javassist )
compile( libraries.jta )
}
mavenPom {
name = '(deprecated - use hibernate-core instead) Hibernate JPA Support'
description = '(deprecated - use hibernate-core instead) Hibernate O/RM implementation of the JPA specification'
}
public String osgiDescription() {
return mavenPom.description
}
jar {
// The OSGi JAR manifest support does not like a non-existent classes dir,
// so make sure we dont use the OSGi one :)
manifest = null
}

View File

@ -0,0 +1,3 @@
Hibernate's JPA support has been merged into the hibernate-core module, making this hibernate-entitymanager module
obsolete. This module will be removed in Hibernate ORM 6.0. It is only kept here for various consumers that expect a
static set of artifact names across a number of Hibernate releases. See https://hibernate.atlassian.net/browse/HHH-10823

View File

@ -9,6 +9,7 @@ if ( !JavaVersion.current().java8Compatible ) {
}
include 'hibernate-core'
include 'hibernate-entitymanager'
include 'hibernate-testing'
include 'hibernate-envers'
include 'hibernate-spatial'