Skip to content

Commit

Permalink
Minor fix to module-info.java: was missing an export
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 4, 2021
1 parent 50ac6db commit abb7556
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Modules:
=== Releases ===
------------------------------------------------------------------------

2.12.2 (not yet released)

- Need to export "com.fasterxml.jackson.dataformat.yaml.util" in `module-info.java`

2.12.1 (08-Jan-2021)

No changes since 2.12.0
Expand Down
2 changes: 2 additions & 0 deletions yaml/src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
exports com.fasterxml.jackson.dataformat.yaml;
// probably need to expose this for 2.x?
exports com.fasterxml.jackson.dataformat.yaml.snakeyaml.error;
// added in 2.12.
exports com.fasterxml.jackson.dataformat.yaml.util;

provides com.fasterxml.jackson.core.JsonFactory with
com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
Expand Down

0 comments on commit abb7556

Please sign in to comment.