jira-client
jira-client copied to clipboard
A simple JIRA REST client for Java
Hi , I do not get a method to set proxy for JiraClient on 0.5 Version. Can you make sure this is to avaiable ? Please do the needfull ASAP.
Unfortunately, the LGPL license is [incompatible](https://www.apache.org/licenses/GPL-compatibility) with the Apache license. This means that jira-client cannot be used in Apache projects. Would you consider dual licensing this project under the Apache...
Hi! I have a custom field with type customfieldtypes:cascadingselect. How to fill this cascading custom field correctly to create new issue? There is my example, which does not work. Customfield...
Hi, is there any facility provides this API to login to Jira using oauth authentication?If so please let me know how to do this. https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-oauth-authentication Thanks.
I checked this version two months ago. I use jira-client in Multi-thread env. any suggestion? Thanks Alan
Watches.get method will always return 404 since the API request URL is incorrect. The correct v2 API request for "Get Issue Watchers" is "GET /rest/api/2/issue/{issueIdOrKey}/watchers" according to the online doc....
How to reopen the closed issue (adding comment is mandatory), i tried Issue.transition().field("comment","Reopening").execute("Open"); it gives cannot update comment i tried Issue.transition().execute("Open"); It shows comment is compulsory
This is to avoid single connection issues in concurrent environments: ``` java.lang.IllegalStateException: Invalid use of BasicClientConnManager: connection still allocated. ``` by using a pooling connection manager implementation, as an example.
is there already an implementation for `/rest/api/2/user/assignable/search?project=TEST` to get all assignable users for a given project?
My custom field is a text field and it's ID is 'customfield_10000' I successfully accessed the field and set the value: `issue.update().field("customfield_10000", "123").execute();` but trying `Issue.SearchResult sr = jira.searchIssues("customfield_10000=123");` runs...