Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 768 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 768 Bytes

scribe-java-bitbucket

These classes makes it possible to use Bitbucket API from Scribe, like this.

OAuthService service = new ServiceBuilder()
                                  .provider(BitbucketApi20.class)
                                  .apiKey(BITBUCKET_API_KEY)
                                  .apiSecret(BITBUCKET_API_SECRET)
                                  .build();

See the documentation for Scribe for more usage instructions.

The project is available from Maven Central:

<dependency>
    <groupId>se.mnord.scribe</groupId>
    <artifactId>scribe-java-bitbucket</artifactId>
    <version>1.0.0</version>
</dependency>