-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Store work items as Jira issues #10
Comments
What do you think about using the "official" JRJC or this RCARZ-JIRA-Client? They both support most of the stuff, we probably are going to need (like linking issues, adding attachments and so on) From what I see I preferr the JRJC (judging version 2.0.0-m2) Here is a code-snippet: JiraRestClient restClient = factory.create(jiraServerUri,
new BasicHttpAuthenticationHandler(settings.getJiraUser(), settings.getJiraPassword()));
IssueRestClient issueClient = restClient.getIssueClient();
Promise<Issue> issuePromise = issueClient.getIssue("WOR-2");
Issue issue = issuePromise.get();
Iterable<Attachment> attachments = issue.getAttachments(); Conclusion after some days: We can not use them, cause the apache libraries they use (httpcore/httpcore-nio) are used in an older version in the rtc java plain libs as well. And they are not compatible. |
jirarestclient) see rtcTo#10
This reverts commit a450787.
The issues getting now created in the jira repository. Some open points:
A useful reference over the rest api can be found here: |
No description provided.
The text was updated successfully, but these errors were encountered: