-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start work on #48, addition of Java 9+ module info
- Loading branch information
1 parent
6d637f2
commit 6a53cdf
Showing
5 changed files
with
64 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Generated 20-Mar-2019 using Moditect maven plugin | ||
module jackson.datatype.eclipse.collections { | ||
requires com.fasterxml.jackson.annotation; | ||
requires com.fasterxml.jackson.core; | ||
requires com.fasterxml.jackson.databind; | ||
|
||
requires org.eclipse.collections.api; | ||
requires org.eclipse.collections.impl; | ||
|
||
exports com.fasterxml.jackson.datatype.eclipsecollections; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.deser; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.deser.bag; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.deser.list; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.deser.map; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.deser.pair; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.deser.set; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.ser; | ||
exports com.fasterxml.jackson.datatype.eclipsecollections.ser.map; | ||
} |
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 @@ | ||
// Generated 20-Mar-2019 using Moditect maven plugin | ||
module com.fasterxml.jackson.datatype.guava { | ||
requires com.fasterxml.jackson.annotation; | ||
|
||
requires com.fasterxml.jackson.core; | ||
requires com.fasterxml.jackson.databind; | ||
requires guava; | ||
|
||
exports com.fasterxml.jackson.datatype.guava; | ||
exports com.fasterxml.jackson.datatype.guava.deser; | ||
exports com.fasterxml.jackson.datatype.guava.deser.multimap; | ||
exports com.fasterxml.jackson.datatype.guava.deser.multimap.list; | ||
exports com.fasterxml.jackson.datatype.guava.deser.multimap.set; | ||
exports com.fasterxml.jackson.datatype.guava.deser.util; | ||
exports com.fasterxml.jackson.datatype.guava.ser; | ||
|
||
provides com.fasterxml.jackson.databind.Module with | ||
com.fasterxml.jackson.datatype.guava.GuavaModule; | ||
} |
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,13 @@ | ||
// Generated 20-Mar-2019 using Moditect maven plugin | ||
module com.fasterxml.jackson.datatype.hppc { | ||
requires com.fasterxml.jackson.core; | ||
requires com.fasterxml.jackson.databind; | ||
requires hppc; | ||
|
||
exports com.fasterxml.jackson.datatype.hppc; | ||
exports com.fasterxml.jackson.datatype.hppc.deser; | ||
exports com.fasterxml.jackson.datatype.hppc.ser; | ||
|
||
provides com.fasterxml.jackson.databind.Module with | ||
com.fasterxml.jackson.datatype.hppc.HppcModule; | ||
} |
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,12 @@ | ||
// Generated 20-Mar-2019 using Moditect maven plugin | ||
module jackson.datatype.pcollections { | ||
requires com.fasterxml.jackson.core; | ||
requires com.fasterxml.jackson.databind; | ||
requires pcollections; | ||
|
||
exports com.fasterxml.jackson.datatype.pcollections; | ||
exports com.fasterxml.jackson.datatype.pcollections.deser; | ||
|
||
provides com.fasterxml.jackson.databind.Module with | ||
com.fasterxml.jackson.datatype.pcollections.PCollectionsModule; | ||
} |