-
Notifications
You must be signed in to change notification settings - Fork 54
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
6b4498c
commit 40bce75
Showing
15 changed files
with
109 additions
and
37 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
10 changes: 6 additions & 4 deletions
10
...collections/src/moditect/module-info.java → ...ollections/src/main/java/module-info.java
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,22 @@ | ||
// Eclipse-collections module (unit) Test Module descriptor | ||
module tools.jackson.datatype.eclipsecollections | ||
{ | ||
// Since we are not split from Main artifact, will not | ||
// need to depend on Main artifact -- but need its dependencies | ||
|
||
requires com.fasterxml.jackson.annotation; | ||
requires tools.jackson.core; | ||
requires transitive tools.jackson.databind; | ||
|
||
requires tools.jackson.datatype.primitive_collections_basee; | ||
|
||
requires org.eclipse.collections.api; | ||
requires org.eclipse.collections.impl; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
|
||
opens tools.jackson.datatype.eclipsecollections; | ||
} |
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
7 changes: 4 additions & 3 deletions
7
guava/src/moditect/module-info.java → guava/src/main/java/module-info.java
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,23 @@ | ||
// Guava module (unit) Test Module descriptor | ||
module tools.jackson.datatype.guava | ||
{ | ||
// Since we are not split from Main artifact, will not | ||
// need to depend on Main artifact -- but need its dependencies | ||
|
||
requires com.fasterxml.jackson.annotation; | ||
|
||
requires tools.jackson.core; | ||
requires tools.jackson.databind; | ||
|
||
requires com.google.common; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
|
||
opens tools.jackson.datatype.guava; | ||
opens tools.jackson.datatype.guava.fuzz; | ||
opens tools.jackson.datatype.guava.optional; | ||
opens tools.jackson.datatype.guava.pojo; | ||
} |
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
9 changes: 6 additions & 3 deletions
9
hppc/src/moditect/module-info.java → hppc/src/main/java/module-info.java
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,20 @@ | ||
// HPPC module (unit) Test Module descriptor | ||
module tools.jackson.datatype.hppc | ||
{ | ||
// Since we are not split from Main artifact, will not | ||
// need to depend on Main artifact -- but need its dependencies | ||
|
||
requires tools.jackson.core; | ||
requires tools.jackson.databind; | ||
|
||
requires com.carrotsearch.hppc; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
|
||
opens tools.jackson.datatype.hppc; | ||
opens tools.jackson.datatype.hppc.deser; | ||
opens tools.jackson.datatype.hppc.ser; | ||
} |
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
7 changes: 5 additions & 2 deletions
7
pcollections/src/moditect/module-info.java → pcollections/src/main/java/module-info.java
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,18 @@ | ||
// PCollections module (unit) Test Module descriptor | ||
module jackson.datatype.pcollections | ||
{ | ||
// Since we are not split from Main artifact, will not | ||
// need to depend on Main artifact -- but need its dependencies | ||
|
||
requires tools.jackson.core; | ||
requires tools.jackson.databind; | ||
|
||
requires org.pcollections; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
opens tools.jackson.datatype.pcollections; | ||
opens tools.jackson.datatype.pcollections.deser; | ||
} |
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
4 changes: 3 additions & 1 deletion
4
...ctions-base/src/moditect/module-info.java → ...tions-base/src/main/java/module-info.java
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