-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #340: convert to "native" module-info
- Loading branch information
1 parent
ebcb134
commit 3c66ac0
Showing
3 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
datetime/src/moditect/module-info.java → datetime/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 @@ | ||
// Java-Time (unit) Test Module descriptor | ||
module tools.jackson.datatype.jsr310 | ||
{ | ||
// 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; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
opens tools.jackson.datatype.jsr310; | ||
opens tools.jackson.datatype.jsr310.deser; | ||
opens tools.jackson.datatype.jsr310.deser.key; | ||
opens tools.jackson.datatype.jsr310.failing; | ||
opens tools.jackson.datatype.jsr310.key; | ||
opens tools.jackson.datatype.jsr310.misc; | ||
opens tools.jackson.datatype.jsr310.ser; | ||
opens tools.jackson.datatype.jsr310.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