0% found this document useful (0 votes)
72 views3 pages

Jira SDK Plugin Development 1

mk

Uploaded by

ARUN KUMAR
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
72 views3 pages

Jira SDK Plugin Development 1

mk

Uploaded by

ARUN KUMAR
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Jira SDK Plugin development

1. Download and Install Atlassian SDK from link :


https://marketplace.atlassian.com/download/plugins/atlassian-
plugin-sdk-windows
2. Create one folder where you want to keep your SDK plugin project
and run following command from Command Prompt and provide
following details accordingly.

atlas-create-jira-plugin

Above command will create a sample skeleton project.


3. To integrate Rest module run following command inside newly
created project folder.

atlas-create-jira-plugin-module

This command will display several modules present. Select no 14.

4. After running above command SDK itself will create one hello world
rest API call and it will ask for following details.
5. Users can change pom.xml file if we need to include or define
dependencies for our plugin code.
6. Also refer atlassian-plugin.xml file to describe behaviour of SDK
plugin. atlassian-plugin.xml file presents at src\main\resources.
7. To generate plugin jar file use following command:

atlas-package

This will generate a folder named target and it will generate


one .jar file that can be used to install our SDK over jira
instances.

8. To test Rest API call and SDK functionality locally run command
atlas-run. It will create a local jira instance and will install SDK plugin
automatically for testing purpose. Credentials – admin/admin

You might also like