-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert Protobuf module-info too, remove shading.
- Loading branch information
1 parent
133eeeb
commit a465114
Showing
4 changed files
with
30 additions
and
45 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
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,24 @@ | ||
// Protobuf unit test Module descriptor | ||
module tools.jackson.dataformat.protobuf | ||
{ | ||
// 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 protoparser; | ||
|
||
// Additional test lib/framework dependencies | ||
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.protobuf; | ||
opens tools.jackson.dataformat.protobuf.dos; | ||
opens tools.jackson.dataformat.protobuf.fuzz; | ||
opens tools.jackson.dataformat.protobuf.schema; | ||
opens tools.jackson.dataformat.protobuf.testutil; | ||
opens tools.jackson.dataformat.protobuf.testutil.failure; | ||
opens tools.jackson.dataformat.protobuf.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