HHH-11995 - Drop hibernate-entitymanager artifact
This commit is contained in:
parent
bb047a9d9e
commit
26ccd0c36d
|
@ -1,30 +0,0 @@
|
||||||
description = '(deprecated - use hibernate-core instead) Hibernate O/RM implementation of the JPA specification'
|
|
||||||
|
|
||||||
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
compile( project( ':hibernate-core' ) )
|
|
||||||
compile( libraries.commons_annotations )
|
|
||||||
compile( libraries.jpa )
|
|
||||||
compile( libraries.byteBuddy )
|
|
||||||
compile( libraries.jta )
|
|
||||||
}
|
|
||||||
|
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
// Traditionally we used to not include any manifest attributes in this JAR
|
|
||||||
// except "Manifest-Version"
|
|
||||||
// Since it's a legacy JAR, let's continue that way until it's retired.
|
|
||||||
|
|
||||||
jar {
|
|
||||||
manifest.attributes.removeAll { key, value -> key != "Manifest-Version" }
|
|
||||||
// Prevent BND from adding manifest attributes automatically
|
|
||||||
bnd( '-nobundles': 'true' )
|
|
||||||
}
|
|
||||||
|
|
||||||
sourcesJar {
|
|
||||||
manifest.attributes.removeAll { key, value -> key != "Manifest-Version" }
|
|
||||||
}
|
|
||||||
|
|
||||||
javadocJar {
|
|
||||||
manifest.attributes.removeAll { key, value -> key != "Manifest-Version" }
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
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
|
|
|
@ -87,7 +87,6 @@ logger.lifecycle "Java versions for main code: " + gradle.ext.javaVersions.main
|
||||||
logger.lifecycle "Java versions for tests: " + gradle.ext.javaVersions.test
|
logger.lifecycle "Java versions for tests: " + gradle.ext.javaVersions.test
|
||||||
|
|
||||||
include 'hibernate-core'
|
include 'hibernate-core'
|
||||||
include 'hibernate-entitymanager'
|
|
||||||
include 'hibernate-testing'
|
include 'hibernate-testing'
|
||||||
include 'hibernate-envers'
|
include 'hibernate-envers'
|
||||||
// todo (6.0): re-enable hibernate-spatial
|
// todo (6.0): re-enable hibernate-spatial
|
||||||
|
|
Loading…
Reference in New Issue