Continue reading »
A Simple JIRA Plugin Using UAL
- By Graeme Smith, Java Developer
- Developer
- On June 26, 2011
I'm going to show you how to create a simple Atlassian Plugin, using the Application Links API. The plugin will be a JIRA Custom Field.
Prerequisites
Get the Atlassian Plugin SDK.
Create a skeleton JIRA plugin. I called mine jira-external-issue-plugin.
Set up your IDE.
Create the custom field
See here for specifics. Your atlassian-plugin.xml should end up looking something like this:
[cc lang="xml"] xmlns="http://www.atlassian.com/schema/plugins"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.atlassian.com/schema/plugins
http://schema.atlassian.com/jira/jira-4.3.xsd">
${project.description}
${project.version}
A