-
Notifications
You must be signed in to change notification settings - Fork 33
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
e847398
commit 431a997
Showing
5 changed files
with
23 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
// Jackson-jr Retrofit 2 module Main artifact Module descriptor | ||
module tools.jackson.jr.retrofit2 | ||
{ | ||
requires transitive tools.jackson.jr.ob; | ||
// 11-Mar-2019, tatu: These are probably not right... | ||
requires transitive okhttp3; | ||
requires transitive retrofit2; | ||
requires tools.jackson.jr.ob; | ||
requires okhttp3; | ||
requires retrofit2; | ||
|
||
exports tools.jackson.jr.retrofit2; | ||
} |
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
jr-stree/src/moditect/module-info.java → jr-stree/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,15 @@ | ||
// Jackson-jr Simple Tree module Test artifact descriptor | ||
module tools.jackson.jr.stree | ||
{ | ||
// 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.jr.ob; | ||
|
||
// Additional test lib/framework dependencies | ||
requires org.junit.jupiter.api; // JUnit 5 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
opens tools.jackson.jr.stree; | ||
opens tools.jackson.jr.stree.util; | ||
} |