Rate this page:
Welcome to Jira Server development! This overview will cover everything you need to know to integrate with Jira Server. This includes the P2 framework for building plugins, as well as Jira features and services that you can use when integrating with Jira.
Hello world
If you already know the theory and want to jump straight into development, read our Getting started guide to build your first Jira Server plugin.
We recommend that you read this entire page if you are new to Jira Server development, but if you want to skip to a specific section, use the links below:
If you want to build a plugin for Jira Server, then you will be using the Atlassian development platform via the Atlassian SDK. The platform consists of the Plugins2 framework (also known as the P2 framework) and a set of components that provide useful tools to developers, as shown below.
For more information on the components in this platform, see Atlassian Platform Common Components.
A Jira Plugins2 is a bundle of code, resources and configuration files that can be installed in Jira. Fundamentally, s can do following:
For more information, see Jira Plugins2 overview.
If you are building a plugin with Plugins2, you'll also need to understand a number of key development processes:
Modules are the most important component of your Jira plugin or integration. Simply put, these are the integration points that your plugin uses to provide rich interactions with Jira. There are two types of modules: basic iframes that allow you to display content in different places in Jira, and more advanced modules that let you provide advanced Jira-specific functionality. Jira Service Management and Jira Software also have their own application-specific modules (UI-related only).
For more information, see About Jira modules.
Entity properties are key-value stores attached to Jira objects, that can be created, updated, and deleted via the Jira REST APIs. This is a powerful system for storing data on the Jira host; it easily support imports, exports, and migrations between instances because the data is stored locally with the Jira instance. Here's how entity properties can help you with your Jira Server integration:
entity_property_equal_to
conditions in-process.To learn more about Jira entity properties, see entity properties.
Use the Jira APIs to interact with Jira from your integration. You should also read the Security overview to learn how to secure any interactions with the Jira APIs.
You should use the REST APIs for most integrations. Each of the Jira Server applications have a REST API that allows you to interact with the objects in that application (e.g. sprints for Jira Software). The Jira Server platform REST API is common to all Jira products.
To learn more, see About the Jira Server REST APIs. See the Webhooks section below as well.
The Java APIs are primarily used when building a P2 plugin. Similar to the REST APIs, each of the Jira Server applications have a Java API.
Webhooks are outgoing messages from Jira that allow your plugin or integration to react to events, like someone transitioning an issue or closing a sprint. Like the REST APIs, there is a set of platform-level webhooks and additional advanced webhooks for Jira Software and Jira Service Management.
To learn more about webhooks, see Webhooks.
Jira Data Center is the enterprise implementation of Jira, providing high availability and performance at scale. If you are developing for Jira Data Center, you need to be aware of the guidelines for building plugins for high availability and clustered environments.
To learn more, see About Jira Data Center.
Time to get hands-on with Jira Server development! Read our Getting started guide to learn how to set up a development environment and build a Jira Server plugin.
Rate this page: