-
-
Notifications
You must be signed in to change notification settings - Fork 797
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
484f317
commit fcd97eb
Showing
4 changed files
with
90 additions
and
11 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
4 changes: 4 additions & 0 deletions
4
src/moditect/module-info.java → 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,41 @@ | ||
// jackson-core test Module descriptor: contains most if not all main | ||
// plus some test dependencies | ||
module tools.jackson.core { | ||
// Additional test lib/framework dependencies | ||
requires org.assertj.core; | ||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// FastDoubleParser shaded but JPMS still requires it to compile? | ||
requires static ch.randelshofer.fastdoubleparser; | ||
|
||
// Main exports need to switch to "opens" for testing | ||
opens tools.jackson.core; | ||
opens tools.jackson.core.async; | ||
opens tools.jackson.core.base; | ||
opens tools.jackson.core.exc; | ||
opens tools.jackson.core.filter; | ||
opens tools.jackson.core.io; | ||
opens tools.jackson.core.json; | ||
opens tools.jackson.core.json.async; | ||
opens tools.jackson.core.sym; | ||
opens tools.jackson.core.tree; | ||
opens tools.jackson.core.type; | ||
opens tools.jackson.core.util; | ||
|
||
// Additional test opens (not exported by main) | ||
|
||
opens tools.jackson.core.base64; | ||
opens tools.jackson.core.constraints; | ||
opens tools.jackson.core.dos; | ||
opens tools.jackson.core.fuzz; | ||
opens tools.jackson.core.io.schubfach; | ||
opens tools.jackson.core.jsonptr; | ||
opens tools.jackson.core.read; | ||
opens tools.jackson.core.read.loc; | ||
opens tools.jackson.core.testutil.failure; | ||
opens tools.jackson.core.tofix; | ||
opens tools.jackson.core.tofix.async; | ||
opens tools.jackson.core.write; | ||
|
||
} |