From b33eb122379d8d4db8ce035178d898e3b0adbcc2 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Mon, 26 Feb 2024 12:34:19 -0800 Subject: [PATCH] Try resolve #193: exclude refs to shaded modules --- src/moditect/module-info.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/moditect/module-info.java b/src/moditect/module-info.java index ba7ebf7e..f4a719d0 100644 --- a/src/moditect/module-info.java +++ b/src/moditect/module-info.java @@ -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;