Skip to content

Commit d774e02

Browse files
committed
Minor cleanup for moditect module-info; fix package names
1 parent 1741499 commit d774e02

File tree

3 files changed

+24
-15
lines changed

3 files changed

+24
-15
lines changed

hibernate5-jakarta/src/moditect/module-info.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
module tools.jackson.datatype.hibernate5.jakarta {
2-
requires transitive tools.jackson.core;
3-
requires transitive tools.jackson.databind;
4-
requires transitive org.hibernate.orm.core;
1+
// Hibernate 5 (jakarta) Jackson datatype module
2+
module tools.jackson.datatype.hibernate5.jakarta
3+
{
4+
requires tools.jackson.core;
5+
requires tools.jackson.databind;
6+
requires static com.fasterxml.jackson.annotation;
7+
8+
requires org.hibernate.orm.core;
59

6-
requires static tools.jackson.annotation;
710
requires static jakarta.activation;
811
requires static jakarta.persistence;
912

hibernate6/src/moditect/module-info.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
module tools.jackson.datatype.hibernate6 {
2-
requires transitive tools.jackson.core;
3-
requires transitive tools.jackson.databind;
4-
requires transitive org.hibernate.orm.core;
5-
1+
// Hibernate 6 Jackson datatype module
2+
module tools.jackson.datatype.hibernate6
3+
{
4+
requires tools.jackson.core;
5+
requires tools.jackson.databind;
66
requires static com.fasterxml.jackson.annotation;
7+
8+
requires org.hibernate.orm.core;
9+
710
requires static jakarta.activation;
811
requires static jakarta.persistence;
912

hibernate7/src/moditect/module-info.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
module tools.jackson.datatype.hibernate7 {
2-
requires transitive tools.jackson.core;
3-
requires transitive tools.jackson.databind;
4-
requires transitive org.hibernate.orm.core;
1+
// Hibernate 7 Jackson datatype module
2+
module tools.jackson.datatype.hibernate7
3+
{
4+
requires tools.jackson.core;
5+
requires tools.jackson.databind;
6+
requires static com.fasterxml.jackson.annotation;
7+
8+
requires org.hibernate.orm.core;
59

6-
requires static tools.jackson.annotation;
710
requires static jakarta.activation;
811
requires static jakarta.persistence;
912

0 commit comments

Comments
 (0)