How can I export the content of a JIRA issue in XML format using Java?
checkout the Jira java rest client e.g at https://mvnrepository.com/artifact/com.atlassian.jira/jira-rest-java-client-core/5.1.0
Jira will return a json by default. You can convert it to xml with a little Java magic. I would not know why anyone would want an xml representation. Json representation has always been sufficient for me( even for relatively advanced tasks).
Documentation : https://ecosystem.atlassian.net/wiki/spaces/JRJC/overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.