java class using jaxb api failing in jira with : Provider com.sun.xml.bind.v2.ContextFactory not found
问题 I am writing a plugin for Jira which involves parsing of XML documents. I am using JAXB to do so (XML to pojos and vice versa) So have a class which generates XML from pojos using JAXB. it looks like... import javax.xml.bind.*; Class Parser { public void m1() { ... // code which uses classes in javax.xml.bind.* } public static void main(String args[]){ Parser p=new Parser(); p.m1(); } } The mentioned packages will come with JDK distribution (rt.jar). so i haven't relayed on anything else to