-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78ce8a7
commit 26ce3dc
Showing
3 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ Project: jackson-databind | |
(reported by C-B-B@github) | ||
#2241: Add `JsonPropertyNamingStrategy.LOWER_DOT_CASE` for dot-delimited names | ||
(contributed by [email protected]) | ||
#2273: Add basic Java 9+ module info | ||
|
||
2.9.9 (not yet released) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Generated 08-Mar-2019 using Moditect maven plugin | ||
module com.fasterxml.jackson.databind { | ||
requires java.desktop; | ||
requires java.logging; | ||
|
||
requires transitive com.fasterxml.jackson.annotation; | ||
requires transitive com.fasterxml.jackson.core; | ||
// these types were suggested as transitive, but aren't actually | ||
// exposed externally (only within internal APIs) | ||
requires java.sql; | ||
requires java.xml; | ||
|
||
exports com.fasterxml.jackson.databind; | ||
exports com.fasterxml.jackson.databind.annotation; | ||
exports com.fasterxml.jackson.databind.cfg; | ||
exports com.fasterxml.jackson.databind.deser; | ||
exports com.fasterxml.jackson.databind.deser.impl; | ||
exports com.fasterxml.jackson.databind.deser.std; | ||
exports com.fasterxml.jackson.databind.exc; | ||
exports com.fasterxml.jackson.databind.ext; | ||
exports com.fasterxml.jackson.databind.introspect; | ||
exports com.fasterxml.jackson.databind.json; | ||
exports com.fasterxml.jackson.databind.jsonFormatVisitors; | ||
exports com.fasterxml.jackson.databind.jsonschema; | ||
exports com.fasterxml.jackson.databind.jsontype; | ||
exports com.fasterxml.jackson.databind.jsontype.impl; | ||
exports com.fasterxml.jackson.databind.module; | ||
exports com.fasterxml.jackson.databind.node; | ||
exports com.fasterxml.jackson.databind.ser; | ||
exports com.fasterxml.jackson.databind.ser.impl; | ||
exports com.fasterxml.jackson.databind.ser.std; | ||
exports com.fasterxml.jackson.databind.type; | ||
exports com.fasterxml.jackson.databind.util; | ||
|
||
provides com.fasterxml.jackson.core.ObjectCodec with | ||
com.fasterxml.jackson.databind.ObjectMapper; | ||
} |