I am trying to add dependency for xmlparserv2.jar but could find anywhere. Any help please.
Thanks
I am trying to add dependency for xmlparserv2.jar but could find anywhere. Any help please.
Thanks
Oracle has a maven repository and to be able to use it you have to create an account and make some configuration for maven. xmlparserv2.jar(and some other jars) is served in that repository. There is a detailed post about this at oracle blogs
After that you can add dependency like this.
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>xmlparserv2</artifactId>
<version>12.2.0.1</version>
</dependency>
Or
After creating account you can directly download the jar from the following location https://www.oracle.com/content/secure/maven/content/com/oracle/jdbc/xmlparserv2/12.2.0.1/xmlparserv2-12.2.0.1.jar
This site will ask username(email you provided during the account creation) and password to proceed to download.
There is also a jar that is uploaded to mulesoft repository by someone(it looks like a fairly old version.) (Using this might be a violation to Oracle license agreement)