-
-
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.
- Loading branch information
1 parent
c7f91fb
commit 127167e
Showing
12 changed files
with
117 additions
and
38 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
9 changes: 4 additions & 5 deletions
9
avro/src/moditect/module-info.java → avro/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,35 @@ | ||
// Avro unit test Module descriptor | ||
module tools.jackson.dataformat.avro | ||
{ | ||
// 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.apache.avro; | ||
|
||
// 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.avro; | ||
opens tools.jackson.dataformat.avro.annotation; | ||
opens tools.jackson.dataformat.avro.dos; | ||
opens tools.jackson.dataformat.avro.fuzz; | ||
opens tools.jackson.dataformat.avro.gen; | ||
opens tools.jackson.dataformat.avro.interop; | ||
opens tools.jackson.dataformat.avro.interop.annotations; | ||
opens tools.jackson.dataformat.avro.interop.arrays; | ||
opens tools.jackson.dataformat.avro.interop.maps; | ||
opens tools.jackson.dataformat.avro.interop.records; | ||
opens tools.jackson.dataformat.avro.jsr310; | ||
opens tools.jackson.dataformat.avro.schema; | ||
opens tools.jackson.dataformat.avro.schemaev; | ||
opens tools.jackson.dataformat.avro.testsupport; | ||
opens tools.jackson.dataformat.avro.testutil.failure; | ||
opens tools.jackson.dataformat.avro.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
4 changes: 3 additions & 1 deletion
4
cbor/src/moditect/module-info.java → cbor/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,27 @@ | ||
// CBOR unit test Module descriptor | ||
module tools.jackson.dataformat.cbor | ||
{ | ||
// 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.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Further, need to open up some packages for JUnit et al | ||
opens tools.jackson.dataformat.cbor; | ||
opens tools.jackson.dataformat.cbor.constraints; | ||
opens tools.jackson.dataformat.cbor.dos; | ||
opens tools.jackson.dataformat.cbor.filter; | ||
opens tools.jackson.dataformat.cbor.fuzz; | ||
opens tools.jackson.dataformat.cbor.gen; | ||
opens tools.jackson.dataformat.cbor.gen.dos; | ||
opens tools.jackson.dataformat.cbor.mapper; | ||
opens tools.jackson.dataformat.cbor.parse; | ||
opens tools.jackson.dataformat.cbor.seq; | ||
opens tools.jackson.dataformat.cbor.testutil; | ||
opens tools.jackson.dataformat.cbor.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
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
smile/src/moditect/module-info.java → smile/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,28 @@ | ||
// Smile unit test Module descriptor | ||
module tools.jackson.dataformat.smile | ||
{ | ||
// 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.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Further, need to open up some packages for JUnit et al | ||
opens tools.jackson.dataformat.smile; | ||
opens tools.jackson.dataformat.smile.async; | ||
opens tools.jackson.dataformat.smile.constraints; | ||
opens tools.jackson.dataformat.smile.dos; | ||
opens tools.jackson.dataformat.smile.filter; | ||
opens tools.jackson.dataformat.smile.fuzz; | ||
opens tools.jackson.dataformat.smile.gen; | ||
opens tools.jackson.dataformat.smile.gen.dos; | ||
opens tools.jackson.dataformat.smile.mapper; | ||
opens tools.jackson.dataformat.smile.parse; | ||
opens tools.jackson.dataformat.smile.seq; | ||
opens tools.jackson.dataformat.smile.testutil; | ||
opens tools.jackson.dataformat.smile.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