-
-
Notifications
You must be signed in to change notification settings - Fork 148
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
09715a9
commit 74eecd3
Showing
13 changed files
with
117 additions
and
35 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
7 changes: 4 additions & 3 deletions
7
csv/src/moditect/module-info.java → csv/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,26 @@ | ||
// CSV unit test Module descriptor | ||
module tools.jackson.dataformat.csv | ||
{ | ||
// 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; | ||
|
||
// Additional test lib/framework dependencies | ||
requires org.assertj.core; | ||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Further, need to open up some packages for JUnit et al | ||
opens tools.jackson.dataformat.csv; | ||
opens tools.jackson.dataformat.csv.deser; | ||
opens tools.jackson.dataformat.csv.filter; | ||
opens tools.jackson.dataformat.csv.fuzz; | ||
opens tools.jackson.dataformat.csv.schema; | ||
opens tools.jackson.dataformat.csv.ser; | ||
opens tools.jackson.dataformat.csv.ser.dos; | ||
opens tools.jackson.dataformat.csv.testutil; | ||
opens tools.jackson.dataformat.csv.testutil.failure; | ||
opens tools.jackson.dataformat.csv.tofix; | ||
} |
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
properties/src/moditect/module-info.java → properties/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,25 @@ | ||
// Properties unit test Module descriptor | ||
module tools.jackson.dataformat.javaprop | ||
{ | ||
// 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; | ||
|
||
// Additional test lib/framework dependencies | ||
requires org.assertj.core; | ||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Further, need to open up some packages for JUnit et al | ||
opens tools.jackson.dataformat.javaprop; | ||
opens tools.jackson.dataformat.javaprop.constraints; | ||
opens tools.jackson.dataformat.javaprop.deser; | ||
opens tools.jackson.dataformat.javaprop.deser.convert; | ||
opens tools.jackson.dataformat.javaprop.filter; | ||
opens tools.jackson.dataformat.javaprop.ser.dos; | ||
opens tools.jackson.dataformat.javaprop.testutil; | ||
opens tools.jackson.dataformat.javaprop.testutil.failure; | ||
opens tools.jackson.dataformat.javaprop.util; | ||
} |
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
4 changes: 3 additions & 1 deletion
4
toml/src/moditect/module-info.java → toml/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,19 @@ | ||
// Properties unit test Module descriptor | ||
module tools.jackson.dataformat.toml | ||
{ | ||
// 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; | ||
|
||
// Additional test lib/framework dependencies | ||
requires org.assertj.core; | ||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Further, need to open up some packages for JUnit et al | ||
opens tools.jackson.dataformat.toml; | ||
opens tools.jackson.dataformat.toml.dos; | ||
opens tools.jackson.dataformat.toml.testutil.failure; | ||
} |
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
8 changes: 5 additions & 3 deletions
8
yaml/src/moditect/module-info.java → yaml/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,30 @@ | ||
// Properties unit test Module descriptor | ||
module tools.jackson.dataformat.yaml | ||
{ | ||
// 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.snakeyaml.engine.v2; | ||
|
||
// Additional test lib/framework dependencies | ||
requires org.assertj.core; | ||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Further, need to open up some packages for JUnit et al | ||
opens tools.jackson.dataformat.yaml; | ||
opens tools.jackson.dataformat.yaml.constraints; | ||
opens tools.jackson.dataformat.yaml.deser; | ||
opens tools.jackson.dataformat.yaml.filter; | ||
opens tools.jackson.dataformat.yaml.fuzz; | ||
opens tools.jackson.dataformat.yaml.misc; | ||
opens tools.jackson.dataformat.yaml.ser; | ||
opens tools.jackson.dataformat.yaml.ser.dos; | ||
opens tools.jackson.dataformat.yaml.testutil; | ||
opens tools.jackson.dataformat.yaml.testutil.failure; | ||
opens tools.jackson.dataformat.yaml.tofix; | ||
opens tools.jackson.dataformat.yaml.type; | ||
} |