Skip to content

Commit 9f3ed66

Browse files
authored
Fix #1340 by adding missing "provides" in module-info.java (#1339)
1 parent b9d56af commit 9f3ed66

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

release-notes/VERSION-2.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ a pure JSON library.
4545
of Tokens allowed per document#
4646
#1331: Update to FastDoubleParser v1.0.1 to fix `BigDecimal` decoding proble
4747
(fixed by @pjfanning)
48+
#1340: Missing `JsonFactory` "provides" SPI with JPMS in `jackson-core` module
49+
(contributed by @sdyura)
4850

4951
2.17.2 (05-Jul-2024)
5052

src/moditect/module-info.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,8 @@
2020

2121
// 03-Oct-2019, tatu: [core#567] Add self-use to avoid warnings
2222
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;
2327
}

0 commit comments

Comments
 (0)