I'm trying to run this project: https://github.com/sebkur/gradle-xmlbeans-plugin/tree/master/test-local/test2
But with latest Gradle dependency implementation 'org.apache.xmlbeans:xmlbeans:5.0.3'
I get generated this deprecated and missing code:
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static com.optimalpayments.creditcard.xmlschema.v1.CcAuthenticateRequestV1Document parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (com.optimalpayments.creditcard.xmlschema.v1.CcAuthenticateRequestV1Document) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
I get Cannot resolve symbol 'XMLInputStream'
Do you know how I can fix this?