The Bitbucket Data Center Java API is split up into multiple modules, each of which export various classes and services that can be consumed by plugins. Each module is published as a separate maven artifact each Bitbucket Data Center release, with a version number matching the Bitbucket Data Center release number.
Provides a collection of services, events and utility classes for interacting with core Bitbucket features such as server administration, projects, repositories, pull requests and user management.
Provides a number of plugin module interfaces, module descriptor classes and utilities that plugins can use to extend Bitbucket's stock functionality. See Plugin Module Types for more details of specific modules that can be implemented.
Services exported by this plugin that provide extended branch information and enable advanced branch management, such as programmatically creating branches and setting up branching models.
Since 7.4.0 the builds functionality has moved into the core Bitbucket Data Center API
Provides an API to create, modify and delete code insight reports and annotations. See this how-to guide for more details.
Provides an API to add and remove comment likes, as well as query for users who have liked comments.
Provides an API to find and get emoticons.
Provides a collection of richly typed command builders for easily invoking native git commands on repositories hosted in Bitbucket.
Provides an API for finding and managing GPG keys for users.
Services exported by this plugin to query the set of Jira issues linked to individual commits.
Services exported by this plugin to query and set the branch permissions on a repository.
Provides an API for enabling and getting the status of synchronizing repositories.
Provides common utilities for dealing with SCMs.
Provides an API for querying information about the search server the application is connected to.
Services exported by this plugin to query and set the SSH server configuration and users SSH keys.
Provides an API for getting suggested reviewers for a pull request.
Provides common Web Fragment Conditions you can use to control when your Web Fragments appear.
Add the following dependencies to your pom.xml
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-spi</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-git-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-build-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-branch-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-code-insights-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-code-insights-spi</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-comment-likes-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-emoticons-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-emoticons-spi</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-gpg-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-jira-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-ref-restriction-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-ref-restriction-spi</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-repository-ref-sync-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-search-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-ssh-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-suggest-reviewers-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-suggest-reviewers-spi</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-scm-common</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-web-common</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
1 2<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-webhooks-api</artifactId> <scope>provided</scope> <version>${bitbucket.version}</version> </dependency>
Rate this page: