Skip to content

Commit 8693cf9

Browse files
authored
Fix #259: use JavaTimeModule not JSR310Module (#262)
1 parent c418f1c commit 8693cf9

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

datetime/src/moditect/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
opens com.fasterxml.jackson.datatype.jsr310.ser.key;
1919

2020
provides com.fasterxml.jackson.databind.Module with
21-
com.fasterxml.jackson.datatype.jsr310.JSR310Module;
21+
com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
2222
}

release-notes/CREDITS-2.x

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,7 @@ Felipe Rotilho (rotilho@github)
162162
* Contributed #255: Change `InstantSerializerBase` to generate schema format in the same
163163
way as `DateTimeSerializerBase`
164164
(2.15.0)
165+
166+
Michał Ostrowski (karbi@github)
167+
* Contributed #259: Wrong module auto-registered when using JPMS
168+
(2.15.0)

release-notes/VERSION-2.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Modules:
1313
#255: Change `InstantSerializerBase` to generate schema format in the same
1414
way as `DateTimeSerializerBase`
1515
(contributed by Felipe R)
16+
#259: Wrong module auto-registered when using JPMS
17+
(reported by Michał O)
1618

1719
2.14.1 (21-Nov-2022)
1820

0 commit comments

Comments
 (0)