-
-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
c7f91fb
commit e0ca2d6
Showing
30 changed files
with
1,081 additions
and
142 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
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
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
14 changes: 7 additions & 7 deletions
14
ion/src/moditect/module-info.java → ion/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 @@ | ||
// Ion unit test Module descriptor | ||
module tools.jackson.dataformat.ion | ||
{ | ||
// 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 java.sql; | ||
|
||
requires com.amazon.ion; | ||
|
||
// 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.ion; | ||
opens tools.jackson.dataformat.ion.dos; | ||
opens tools.jackson.dataformat.ion.fuzz; | ||
opens tools.jackson.dataformat.ion.ionvalue; | ||
opens tools.jackson.dataformat.ion.jsr310; | ||
opens tools.jackson.dataformat.ion.misc; | ||
opens tools.jackson.dataformat.ion.polymorphism; | ||
opens tools.jackson.dataformat.ion.sequence; | ||
opens tools.jackson.dataformat.ion.testutil.failure; | ||
opens tools.jackson.dataformat.ion.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
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,21 @@ | ||
// Protobuf Main artifact Module descriptor | ||
module tools.jackson.dataformat.protobuf | ||
{ | ||
requires transitive tools.jackson.core; | ||
requires transitive tools.jackson.databind; | ||
|
||
// No module-info nor Automatic-Module-Name; relies on jar name: | ||
requires protoparser; | ||
|
||
exports tools.jackson.dataformat.protobuf; | ||
exports tools.jackson.dataformat.protobuf.schema; | ||
exports tools.jackson.dataformat.protobuf.schemagen; | ||
|
||
// Need to "opens" to allow reading resource `descriptor.proto` | ||
opens tools.jackson.dataformat.protobuf.schema; | ||
|
||
provides tools.jackson.core.TokenStreamFactory with | ||
tools.jackson.dataformat.protobuf.ProtobufFactory; | ||
provides tools.jackson.databind.ObjectMapper with | ||
tools.jackson.dataformat.protobuf.ProtobufMapper; | ||
} |
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
Oops, something went wrong.