Skip to content

Commit

Permalink
Try resolve #193: exclude refs to shaded modules (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder authored Feb 26, 2024
1 parent 49a2924 commit 5a26399
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
6 changes: 6 additions & 0 deletions release-notes/CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,9 @@ Kamil Gołębiewski (@Magmaruss)

* Contributed #165: Add support to optionally allow surrogate pair entities
(6.6.0)

Alexey Gavrilov (@agavrilov76)

* Reported #193: Module `com.ctc.wstx` does not read a module that exports
`com.ctc.wstx.shaded.msv.org_isorelax.verifier`
(6.6.1)
6 changes: 6 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Project: woodstox
=== Releases ===
------------------------------------------------------------------------

6.6.1 (26-Feb-2024)

#193: Module `com.ctc.wstx` does not read a module that exports
`com.ctc.wstx.shaded.msv.org_isorelax.verifier`
(reported by Alexey G)

6.6.0 (15-Jan-2024)

#67: Wrong line for XML event location in elements following DTD
Expand Down
6 changes: 4 additions & 2 deletions src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@
provides javax.xml.stream.XMLOutputFactory with com.ctc.wstx.stax.WstxOutputFactory;

//Include shaded in provisions
provides com.ctc.wstx.shaded.msv.relaxng_datatype.DatatypeLibraryFactory with com.ctc.wstx.shaded.msv_core.datatype.xsd.ngimpl.DataTypeLibraryImpl;
provides com.ctc.wstx.shaded.msv.org_isorelax.verifier.VerifierFactoryLoader with com.ctc.wstx.shaded.msv_core.verifier.jarv.FactoryLoaderImpl;
// 26-Feb-2024, tatu: Seems like these are problematic; exclude
//provides com.ctc.wstx.shaded.msv.relaxng_datatype.DatatypeLibraryFactory with com.ctc.wstx.shaded.msv_core.datatype.xsd.ngimpl.DataTypeLibraryImpl;
//provides com.ctc.wstx.shaded.msv.org_isorelax.verifier.VerifierFactoryLoader with com.ctc.wstx.shaded.msv_core.verifier.jarv.FactoryLoaderImpl;

provides org.codehaus.stax2.validation.XMLValidationSchemaFactory.dtd with com.ctc.wstx.dtd.DTDSchemaFactory;
provides org.codehaus.stax2.validation.XMLValidationSchemaFactory.relaxng with com.ctc.wstx.msv.RelaxNGSchemaFactory;
provides org.codehaus.stax2.validation.XMLValidationSchemaFactory.w3c with com.ctc.wstx.msv.W3CSchemaFactory;
Expand Down

0 comments on commit 5a26399

Please sign in to comment.