Skip to content

Commit 678cdc3

Browse files
committed
HHH-10883 - Fix Restore the Maven artifact hibernate-java8 as an empty placeholder
1 parent 1dc2fe1 commit 678cdc3

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
dependencies {
2+
compile( project( ':hibernate-core' ) )
3+
}
4+
5+
mavenPom {
6+
name = '(deprecated - use hibernate-core instead) Java8-specific Hibernate O/RM functionality'
7+
description = '(deprecated - use hibernate-core instead) Support for Java8-specific features - mainly Java8 Date/Time (JSR 310)'
8+
}
9+
10+
public String osgiDescription() {
11+
return mavenPom.description
12+
}
13+
14+
jar {
15+
// The OSGi JAR manifest support does not like a non-existent classes dir,
16+
// so make sure we dont use the OSGi one :)
17+
manifest = null
18+
}
19+
20+
sourcesJar {
21+
// The OSGi JAR manifest support does not like a non-existent classes dir,
22+
// so make sure we dont use the OSGi one :)
23+
manifest = null
24+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Java8-specific Hibernate O/RM functionality has been merged into the hibernate-core module, making this hibernate-java8 module
2+
obsolete. This module will be removed in Hibernate ORM 6.0. It is only kept here for various consumers that expect a
3+
static set of artifact names across a number of Hibernate releases. See https://hibernate.atlassian.net/browse/HHH-10883

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ include 'hibernate-testing'
1414
include 'hibernate-envers'
1515
include 'hibernate-spatial'
1616

17+
include 'hibernate-java8'
18+
1719
include 'hibernate-osgi'
1820

1921
include 'hibernate-c3p0'

0 commit comments

Comments
 (0)