Skip to content

cornelcreanga/bitbucket-rest-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stash Java Client

Build Status

Tiny Java library acting as a wrapper over the Stash (Bitbucket Server) REST API.

Work in progress. For the moment I plan to obtain pull requests statistics so I will mostly implement the GET methods

Getting Started

  • Maven dependency
    <dependency>
      		<groupId>com.ccreanga.bitbucket</groupId>
      		<artifactId>bitbucket-rest-client</artifactId>
      		<version>1.0-SNAPSHOT</version>
      	</dependency>
      

Samples

//Getting all the projects

BitBucketClientFactory factory = BitBucketClientFactory(new URL(bitBucketUrl),new BitBucketCredentials(bitBucketUser,bitBucketPassword));

ProjectClient projectClient = factory.getProjectClient();

System.out.println(projectClient.getProjects(new Limit(0,100));

About

Java wrapper over the Stash REST API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages