-
Notifications
You must be signed in to change notification settings - Fork 81
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
4c4447a
commit 04016d1
Showing
33 changed files
with
346 additions
and
312 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// JAX-RS Base module-info for Main artifact | ||
module tools.jackson.jaxrs.base | ||
{ | ||
requires com.fasterxml.jackson.annotation; | ||
requires tools.jackson.core; | ||
requires tools.jackson.databind; | ||
|
||
requires java.ws.rs; | ||
|
||
exports tools.jackson.jaxrs.annotation; | ||
exports tools.jackson.jaxrs.base; | ||
exports tools.jackson.jaxrs.cfg; | ||
exports tools.jackson.jaxrs.util; | ||
} |
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
// JAX-RS Base module-info for (unit) Tests | ||
module tools.jackson.jaxrs.base | ||
{ | ||
// 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 transitive 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.jaxrs.base; | ||
opens tools.jackson.jaxrs.base.cfg; | ||
} |
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 @@ | ||
// JAX-RS CBOR module-info for Main artifact | ||
module tools.jackson.jaxrs.cbor | ||
{ | ||
requires tools.jackson.core; | ||
requires transitive tools.jackson.databind; | ||
requires tools.jackson.dataformat.cbor; | ||
requires tools.jackson.module.jaxb; | ||
|
||
requires tools.jackson.jaxrs.base; | ||
|
||
requires java.ws.rs; | ||
|
||
exports tools.jackson.jaxrs.cbor; | ||
// [jaxrs-providers#119]: CXF, RESTEasy, OpenAPI require reflective access | ||
opens tools.jackson.jaxrs.cbor; | ||
|
||
provides javax.ws.rs.ext.MessageBodyReader with | ||
tools.jackson.jaxrs.cbor.JacksonCBORProvider; | ||
provides javax.ws.rs.ext.MessageBodyWriter with | ||
tools.jackson.jaxrs.cbor.JacksonCBORProvider; | ||
} |
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 was deleted.
Oops, something went wrong.
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 @@ | ||
// JAX-RS CBOR module-info for (unit) Tests | ||
module tools.jackson.jaxrs.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; | ||
requires tools.jackson.dataformat.cbor; | ||
requires tools.jackson.module.jaxb; | ||
|
||
requires tools.jackson.jaxrs.base; | ||
|
||
requires java.ws.rs; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
|
||
opens tools.jackson.jaxrs.cbor; | ||
opens tools.jackson.jaxrs.cbor.dw; | ||
opens tools.jackson.jaxrs.cbor.jersey; | ||
} |
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,12 @@ | ||
// JAX-RS Datatypes module-info for Main artifact | ||
module tools.jackson.datatype.jaxrs | ||
{ | ||
requires tools.jackson.core; | ||
requires transitive tools.jackson.databind; | ||
requires java.ws.rs; | ||
|
||
exports tools.jackson.datatype.jaxrs; | ||
|
||
provides tools.jackson.databind.JacksonModule with | ||
tools.jackson.datatype.jaxrs.Jaxrs2TypesModule; | ||
} |
This file was deleted.
Oops, something went wrong.
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,17 @@ | ||
// JAX-RS Datatypes module-info for (unit) Tests | ||
module tools.jackson.datatype.jaxrs | ||
{ | ||
// 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 transitive tools.jackson.databind; | ||
requires java.ws.rs; | ||
|
||
// Additional test lib/framework dependencies | ||
requires junit; // JUnit 4 | ||
|
||
// Further, need to open up test packages for JUnit et al | ||
|
||
opens tools.jackson.datatype.jaxrs; | ||
} |
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,19 @@ | ||
// JAX-RS JSON module-info for Main artifact | ||
module tools.jackson.jaxrs.json { | ||
requires tools.jackson.core; | ||
requires transitive tools.jackson.databind; | ||
requires tools.jackson.module.jaxb; | ||
|
||
requires tools.jackson.jaxrs.base; | ||
|
||
requires java.ws.rs; | ||
|
||
exports tools.jackson.jaxrs.json; | ||
// [jaxrs-providers#119]: CXF, RESTEasy, OpenAPI require reflective access | ||
opens tools.jackson.jaxrs.json; | ||
|
||
provides javax.ws.rs.ext.MessageBodyReader with | ||
tools.jackson.jaxrs.json.JacksonJsonProvider; | ||
provides javax.ws.rs.ext.MessageBodyWriter with | ||
tools.jackson.jaxrs.json.JacksonJsonProvider; | ||
} |
Oops, something went wrong.