We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
module-info.java
1 parent b9d56af commit 9f3ed66Copy full SHA for 9f3ed66
release-notes/VERSION-2.x
@@ -45,6 +45,8 @@ a pure JSON library.
45
of Tokens allowed per document#
46
#1331: Update to FastDoubleParser v1.0.1 to fix `BigDecimal` decoding proble
47
(fixed by @pjfanning)
48
+#1340: Missing `JsonFactory` "provides" SPI with JPMS in `jackson-core` module
49
+ (contributed by @sdyura)
50
51
2.17.2 (05-Jul-2024)
52
src/moditect/module-info.java
@@ -20,4 +20,8 @@
20
21
// 03-Oct-2019, tatu: [core#567] Add self-use to avoid warnings
22
uses com.fasterxml.jackson.core.ObjectCodec;
23
+
24
+ // 25-Sep-2024: [core#1340] Need to explicitly add even in base
25
+ provides com.fasterxml.jackson.core.JsonFactory with
26
+ com.fasterxml.jackson.core.JsonFactory;
27
}
0 commit comments