-
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.
- Loading branch information
1 parent
5e69074
commit fcdecbc
Showing
4 changed files
with
45 additions
and
34 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,21 @@ | ||
// JAX-RS Smile module-info for Main artifact | ||
module tools.jackson.jaxrs.smile | ||
{ | ||
requires tools.jackson.core; | ||
requires transitive tools.jackson.databind; | ||
requires tools.jackson.dataformat.smile; | ||
requires tools.jackson.module.jaxb; | ||
|
||
requires tools.jackson.jaxrs.base; | ||
|
||
requires java.ws.rs; | ||
|
||
exports tools.jackson.jaxrs.smile; | ||
// [jaxrs-providers#119]: CXF, RESTEasy, OpenAPI require reflective access | ||
opens tools.jackson.jaxrs.smile; | ||
|
||
provides javax.ws.rs.ext.MessageBodyReader with | ||
tools.jackson.jaxrs.smile.JacksonSmileProvider; | ||
provides javax.ws.rs.ext.MessageBodyWriter with | ||
tools.jackson.jaxrs.smile.JacksonSmileProvider; | ||
} |
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 Smile module-info for (unit) Tests | ||
module tools.jackson.jaxrs.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; | ||
requires tools.jackson.dataformat.smile; | ||
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.smile; | ||
opens tools.jackson.jaxrs.smile.dw; | ||
opens tools.jackson.jaxrs.smile.jersey; | ||
} |