File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ include 'hibernate-testing'
14
14
include ' hibernate-envers'
15
15
include ' hibernate-spatial'
16
16
17
+ include ' hibernate-java8'
18
+
17
19
include ' hibernate-osgi'
18
20
19
21
include ' hibernate-c3p0'
You can’t perform that action at this time.
0 commit comments