0

I need to know which jar contains the following class

com.ibm.xml.jaxp.datatype.XMLGregorianCalendar

kindly help me

MozenRath
  • 9,652
  • 13
  • 61
  • 104

3 Answers3

1

this jar exists in xml-apis.jar

Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
1

Use the following code snippet:

System.out.println(com.ibm.xml.jaxp.datatype.XMLGregorianCalendar.class.getProtectionDomain().getCodeSource().getLocation());
JB Nizet
  • 678,734
  • 91
  • 1,224
  • 1,255
0

Are you using Maven ?

mvn dependency:tree

Then in the output look for: com.ibm.

ssedano
  • 8,322
  • 9
  • 60
  • 98