Skip to content

entropy64/JiraRESTClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JiraRESTClient

A Java client for interacting with the JIRA REST API.

Example Usage:

final String url = "http://jira.organisation.org";
final String username = "Jono";
final String password = "aPa$$w0rd";
 
final JiraClient client = JiraClient.builder()
    .baseURL(url)
    .username(username)
    .password(password)
    .build();

Issue issue = client.getIssue("FYP-100");

Disclaimer

This library is currently still under active development, a MAVEN artifact will be published when complete.

About

A java client for interacting with the JIRA REST API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages