jira-client
jira-client copied to clipboard
A simple JIRA REST client for Java
When do you think you will release a new version? I saw a lot of good improvements (pagination, multi threading client etc) already implemented.
Hi, sorry for the newbie question but I can't figure out how to extract the date on which a transition to a given state was made. Can someone point me...
JIRA version in use : 7.13.1 {"message":"java.lang.Integer cannot be cast to java.lang.String","status-code":500,"stack-trace":"java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String\n\tat com.thed.zephyr.je.rest.ScheduleResource.validateIdsAndRelations(ScheduleResource.java:1642)\n\tat com.thed.zephyr.je.rest.ScheduleResource.createExecution(ScheduleResource.java:611)\n\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n\tat java.lang.reflect.Method.invoke(Method.java:497)\n\tat com.atlassian.plugins.rest.common.interceptor.impl.DispatchProviderHelper$ResponseOutInvoker$1.invoke(DispatchProviderHelper.java:192)\n\tat com.atlassian.plugins.rest.common.interceptor.impl.DispatchProviderHelper$1.intercept(DispatchProviderHelper.java:83)\n\tat com.atlassian.plugins.rest.common.interceptor.impl.DefaultMethodInvocation.invoke(DefaultMethodInvocation.java:53)\n\tat com.atlassian.plugins.rest.common.expand.interceptor.ExpandInterceptor.intercept(ExpandInterceptor.java:34)\n\tat com.atlassian.plugins.rest.common.interceptor.impl.DefaultMethodInvocation.invoke(DefaultMethodInvocation.java:53)\n\tat...
I could not find a way to update an existing comment. The method described on the summary does not exist on the version I'm using. ``` /* Add the first...
If issues are fetched via a Jira Search, then comments for each issue will be missed and getComments() method will return an empty list. Thus, implemented a method getAllComments (similarly...
net.rcarz.jiraclient.RestException: 400 Bad Request: {"errorMessages":[],"errors":{"assignee":"data was not an object"}} source code ``` java BasicCredentials creds = new BasicCredentials(site.userName, site.password); JiraClient jira = new JiraClient(site.url.toString(), creds); final Issue tempIssue = jira.getIssue(issue.id);...
Implementation for #239
I'd like to get your thoughts on the following modifications and perhaps get them merged at some point. This PR has a few features of note: - Gradle Support Builds...