-
-
Notifications
You must be signed in to change notification settings - Fork 795
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #527 from FasterXML/tatu/add-module-info
Add simple module-info for JDK9+, using Moditect
- Loading branch information
Showing
3 changed files
with
51 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
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,19 @@ | ||
module com.fasterxml.jackson.core { | ||
// 04-Mar-2019, tatu: Ugh. Can not use wildcards, stupid ass JDK 9+ module system... | ||
// So, for 2.x core need to make sure we manually include everything. | ||
// Worse, there is only syntactic validation, not contents, so we can both miss | ||
// AND add bogus packages. | ||
// However: at least syntax is verified; and this works with JKD8 | ||
exports com.fasterxml.jackson.core; | ||
exports com.fasterxml.jackson.core.async; | ||
exports com.fasterxml.jackson.core.base; | ||
exports com.fasterxml.jackson.core.exc; | ||
exports com.fasterxml.jackson.core.filter; | ||
exports com.fasterxml.jackson.core.format; | ||
exports com.fasterxml.jackson.core.io; | ||
exports com.fasterxml.jackson.core.json; | ||
exports com.fasterxml.jackson.core.json.async; | ||
exports com.fasterxml.jackson.core.sym; | ||
exports com.fasterxml.jackson.core.type; | ||
exports com.fasterxml.jackson.core.util; | ||
} |