Skip to content

Commit

Permalink
Fix #1340 by adding missing "provides" in module-info.java (#1339)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdyura authored Sep 25, 2024
1 parent b9d56af commit 9f3ed66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ a pure JSON library.
of Tokens allowed per document#
#1331: Update to FastDoubleParser v1.0.1 to fix `BigDecimal` decoding proble
(fixed by @pjfanning)
#1340: Missing `JsonFactory` "provides" SPI with JPMS in `jackson-core` module
(contributed by @sdyura)

2.17.2 (05-Jul-2024)

Expand Down
4 changes: 4 additions & 0 deletions src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@

// 03-Oct-2019, tatu: [core#567] Add self-use to avoid warnings
uses com.fasterxml.jackson.core.ObjectCodec;

// 25-Sep-2024: [core#1340] Need to explicitly add even in base
provides com.fasterxml.jackson.core.JsonFactory with
com.fasterxml.jackson.core.JsonFactory;
}

0 comments on commit 9f3ed66

Please sign in to comment.