-
-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work on #701, try to use
module-info.java
natively
- Loading branch information
1 parent
3eca136
commit b22e37d
Showing
4 changed files
with
51 additions
and
58 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
4 changes: 3 additions & 1 deletion
4
src/moditect/module-info.java → 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,30 @@ | ||
// Jackson 3.x module-info for jackson-dataformat-xml Test artifact | ||
module tools.jackson.dataformat.xml | ||
{ | ||
// First, same requires as the main artifact | ||
|
||
requires java.xml; | ||
requires org.codehaus.stax2; | ||
|
||
requires com.fasterxml.jackson.annotation; | ||
requires tools.jackson.core; | ||
requires tools.jackson.databind; | ||
|
||
// Then test library dependencies | ||
requires junit; | ||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.params; | ||
|
||
// Then exports same as main artifact | ||
|
||
exports tools.jackson.dataformat.xml; | ||
exports tools.jackson.dataformat.xml.annotation; | ||
exports tools.jackson.dataformat.xml.deser; | ||
exports tools.jackson.dataformat.xml.ser; | ||
exports tools.jackson.dataformat.xml.util; | ||
|
||
provides tools.jackson.core.TokenStreamFactory with | ||
tools.jackson.dataformat.xml.XmlFactory; | ||
provides tools.jackson.databind.ObjectMapper with | ||
tools.jackson.dataformat.xml.XmlMapper; | ||
} |
50 changes: 0 additions & 50 deletions
50
src/test/java/tools/jackson/dataformat/xml/interop/NonWoodstoxStaxImpl482Test.java
This file was deleted.
Oops, something went wrong.