jira-client icon indicating copy to clipboard operation
jira-client copied to clipboard

A simple JIRA REST client for Java

Results 103 jira-client issues
Sort by recently updated
recently updated
newest added

Hi @rcarz , getiing issue with createIsuue in JiraClient BasicCredentials creds = new BasicCredentials("*****", "****"); JiraClient jira = new JiraClient("http://localhost:8080/login.jsp", creds); /* Create a new issue. */ Issue newIssue =...

Hi Team, I am strugglig when i am calling to createIssue(String projectName, String issueType) Below is the sample code: BasicCredentials creds = new BasicCredentials("xyz", "pqr"); JiraClient jira = new JiraClient("RESTURL",...

net.rcarz.jiraclient.RestClient#buildURI is adding a null part in path and it is resulting in a 404 response. ![image](https://user-images.githubusercontent.com/104554846/167378004-bc38156e-e4d3-4a60-962a-e6626cc04c7d.png)

Hello, I am using this library to create bug report after test run. However, I need to set custom fields but library does not support. There is only one version...

... org.kordamp.json to get rid of vulnerable dependencies.

In my dependency 0.5 it still uses SimpleDateFormat with yyyy-MM-dd. I see that it has been improved at the current master branch: - https://github.com/rcarz/jira-client/blob/master/src/main/java/net/rcarz/jiraclient/Comment.java#L67 - https://github.com/rcarz/jira-client/blob/master/src/main/java/net/rcarz/jiraclient/Field.java#L259 - https://github.com/rcarz/jira-client/blob/master/src/main/java/net/rcarz/jiraclient/Field.java#L155 Why is...

Hello @rcarz, Thank you for this awesome library! I am using the latest version published to Maven (0.5), but would like some of the new bug fixes added since then,...

Custom Field in Jira : _customfield_1003={"required":true,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multiselect","customId":1003},"name":"Customer","fieldId":"customfield_1003","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":""}]}_ Options tried: 1. ``` FluentCreate newIssueFluentCreate = jira.createIssue(project, issueType); newIssueFluentCreate.field(Field.SUMMARY, summary); newIssueFluentCreate.field("customfield_1003", new ArrayList() {{add(customer);}}); newIssueFluentCreate.field(Field.DESCRIPTION, description); newIssueFluentCreate.field(Field.LABELS, new ArrayList() {{add(label);}}); newIssueFluentCreate.field(Field.PRIORITY, "Minor"); newIssue...

I'm about to try a fix from this thread: https://travis-ci.community/t/error-installing-oraclejdk8-expected-feature-release-number-in-range-of-9-to-14-but-got-8/3766