Looks like net.rcarz.jiraclient.JiraClient#createIssue is broken with JIRA version 9.
I found some documentation that outlines why the endpoint has been removed: https://confluence.atlassian.com/jiracore/createmeta-rest-endpoint-to-be-removed-975040986.html
The same article suggests the following solution, which would require rewriting the URI calls that occur in net.rcarz.jiraclient.Issue#getCreateMetadata
Modify the calls the integrations use to the following:
RETURN A LIST OF PROJECTS
/rest/api/2/project
RETURN A LIST OF ISSUE TYPES GIVEN A PROJECT
/rest/api/2/issue/createmeta/{projectIdOrKey}/issuetypes
RETURN A LIST OF FIELDS GIVEN A PROJECT AND AN ISSUE TYPE
/rest/api/2/issue/createmeta/{projectIdOrKey}/issuetypes/{issueTypeId}
Looks like
net.rcarz.jiraclient.JiraClient#createIssueis broken with JIRA version 9.I found some documentation that outlines why the endpoint has been removed: https://confluence.atlassian.com/jiracore/createmeta-rest-endpoint-to-be-removed-975040986.html
The same article suggests the following solution, which would require rewriting the URI calls that occur in
net.rcarz.jiraclient.Issue#getCreateMetadata